public class Counter{
private int value;
public int getValue(){
return value;
}
public void setValue (int value){
this.value = value;
}
public void increment() {
/* */
}
public void decrement() {
/* */
}
}
public class LoopingCounter extends Counter{
private int limit;
public LoopingCounter(int limit){
this.limit = limit;
}
public void increment(){
int value = super.getValue();
if( value == limit){
System.out.println("Value has reached the limit, cannot increment any further!");
setValue(0);
} else{
value++;
setValue(value);
}
}
public void decrement(){
int value = super.getValue();
if(value == limit){
System.out.println("Value has reached the limit, cannot decrement any further!");
} else{
value--;
setValue(value);
}
}
public int getValue() {
System.out.println("override");
return 1000;
}
}
public class CounterTest{
public static void main(String[] args){
LoopingCounter lc = new LoopingCounter(100);
for(int i=0; i<150; i++){
lc.increment();
System.out.println(lc.getValue());
}
}
}
在这种情况下,LoopingCounter 应该触发getValue
Counter 类中的方法。但是由于某种原因,当我运行它时,它一直使用自己的getValue
方法。
请帮助我理解为什么我不能以这种方式调用父方法。
道歉:
我现在看到了我的错误。我道歉。我没有意识到 lc.getValue() 并且很困惑为什么 lc.increment 未能正确调用 super.getValue() 。故事的精神是在发帖之前有足够的睡眠。-_-”