I am new to Java, need some help
I have an abstract superclass that has 2 protected attributes
public abstract class Superclass {
protected int a = 0;
protected int b = 0;
...
}
then I have a subclass that extends the superclass, and i wish to access a and b, but I dont know how. I searched the web and didnt find anything.
public class Subclass extends Superclass {
public boolean someMethod(){
.....
// at the end i need to do
a += 1;
return true
}
}
I get the compilation error: "unreachable statemen"
thanks for your help.