私は困惑しています。ゲッターとセッターを含めて、一部のコードを最適化したい。これは私がこれまでに持っているものです:
public class ThingHolder {
private int updateCounter=0;
private Object theThing;
public Object getThing() {
return theThing;
}
public void setThing(Object theThing) {
this.theThing = theThing;
updateCounter++;
}
public int getUpdateCounter() {
return updateCounter;
}
と:
public class ThingHolderTester {
public static void main(String[] args) {
ThingHolder t = new ThingHolder();
t.setThing="First Object"; t.updateCounter++;
System.out.println("The thing is currently " + t.getThing + " and the ThingHolder has been updated " + t.updateCounter + " times");
t.setThing="Second Object"; t.updateCounter++;
System.out.println("The thing is currently " + t.getThing + " and the ThingHolder has been updated " + t.updateCounter + "times");
}
現時点では、get および set メソッドでシンボルが見つからないというエラーが発生し続けています。助けてください?