重点
当超类对象引用变量引用子类对象时,被引用对象的类型而不是引用变量的类型决定了调用谁的成员方法,但是这个被调用的方法必须是在超类中定义过的,也就是说被子类覆盖的方法。(但是如果强制把超类转换成子类的话,就可以调用子类中新添加而超类没有的方法了。)
在继承链中对象方法的调用存在一个优先级:this.show(O)、super.show(O)、this.show((super)O)、super.show((super)O)。
public class A {
public String show(D obj) {
return ("A and D");
}
public String show(A obj) {
return ("A and A");
}
}
class B extends A{
public String show(B obj){
return ("B and B");
}
public String show(A obj){
return ("B and A");
}
}
class C extends B{
}
class D extends B{
}
class Test {
public static void main(String[] args) {
A a1 = new A();
A a2 = new B();
B b = new B();
C c = new C();
D d = new D();
System.out.println("1--" + a1.show(b));
System.out.println("2--" + a1.show(c));
System.out.println("3--" + a1.show(d));
System.out.println("4--" + a2.show(b));
System.out.println("5--" + a2.show(c));
System.out.println("6--" + a2.show(d));
System.out.println("7--" + b.show(b));
System.out.println("8--" + b.show(c));
System.out.println("9--" + b.show(d));
}
}
程序中A、B、C、D的关系如下
关系图
打印结果
1--A and A
2--A and A
3--A and D
4--B and A
5--B and A
6--A and D
7--B and B
8--B and B
9--A and D
解析 4 为什么是B AND A
a2.show(b);a2是一个引用变量,类型为A,即this=a2,b的类型是B,意思就是去A里面找show(B b),但是没有找到,所以上面重点中提到的优先级就到了②super.show(O),也就是A的父类,但是A没有父类,所以优先级到了③this.show((super)O),因为B的父类是A,所以this.show((super)O) = A.show(A),但是由于引用指向B,B类又重写了A类的show(A),所以打印出来的就是
B and A
感觉这个解析是错误的。跟上面的重点相矛盾。所以还是以重点为准
网友评论