自从我开始学习java以来,我一直在考虑它。我没有受到需要这种情况的驱使,但我只是好奇!
答案 0 :(得分:0)
构造函数可以使用一次。
Getters和Setter是公共方法,可以多次使用。
public static void main(String[] args) {
Object obj = new Object();
obj.setValue(10); //setter call 1
obj.setValue(20); //setter call 2
obj.setValue(30); //setter call 3
obj.setValue(40); //setter call 4
System.out.Println(obj.getValue()); // will print 40
}
BR,
勒凯什