public class Test { - public static void main(String[] args){
B b=new B(0); - int y=b.getY();
} -
} -
class A { - public static int x=2; //public static int x被继承到B,成为B的私有域。
private int y=2; // B中仍然有一个名为y的域,但是无法直接访问,需要通过super.getY() - protected int z; //类A的protected修饰符的数据或方法,可以被同个包中的任何一个类访问(包括子类),也可以被不同包中的A的子类访问。
- A(){ //如果子类构造函数没有显式调用超类构造函数,将会自动调用超类的无参构造函 数,
若超类没有无参构造函数,子类中又没有显式调用,则编译器报错 - x=x+1;
showX(); //java默认动态绑定机制,若不需要动态绑定则将方法定义为final阻止继承 - }
public void showX(){ - System.out.println("A.x="+x);
} - public int getY(){
return y; - }
- }
- class B extends A {
- B(int x){
x=x+2; //只对局部x操作 - showX();
} - public void showX(){
System.out.println("B.x="+x); - }
public int getY(){ //覆盖一个方法时,子类的方法可见性不能低于父类方法的可见性。 -
System.out.println("B.y="+(super.getY()+x)); - return super.getY()+x;
} -
} -
//输出 - //B.x=3 //动态绑定
//B.x=3 - //B.y=5
- 我们在学习新知识的时候不要忘记经常回顾一下已学的。建议。
|