setter method inheritance code example
Example 1: inheritance setter and getter in java
public class C4 extends C3{
protected int x = 4;
@Override
public int getX() {
return x;
}
}
Example 2: inheritance setter and getter in java
public class C2 extends C1{
}