我是Java新手,需要一些帮助
我有一个具有 2 个受保护属性的抽象超类
public abstract class Superclass {
protected int a = 0;
protected int b = 0;
...
}
然后我有一个扩展超类的子类,我希望访问 a 和 b,但我不知道如何。我在网上搜索并没有找到任何东西。
public class Subclass extends Superclass {
public boolean someMethod(){
.....
// at the end i need to do
a += 1;
return true
}
}
我得到编译错误:“unreachable statemen”
谢谢你的帮助。