4
Bir yöntemi yeniden adlandırmak kapsüllemeyi koruyabilir mi?
Alıcılar / ayarlayıcılar ne zaman haklı olduğu hakkında bu sayfayı okuyordum ve OP aşağıdaki kod örneğini verdi: class Fridge { int cheese; void set_cheese(int _cheese) { cheese = _cheese; } int get_cheese() { return cheese; } } void go_shopping(Fridge fridge) { fridge.set_cheese(fridge.get_cheese() + 5); } Kabul edilen cevap : Bu …