多态中的转型
public class PolDemo01 {
public static void main(String[] args) {
A a = new B();
a.tell1(); //B--tell1 子类重写了父类的方法
a.tell2(); //A--tell2 父类用子类实例化,调用自己的方法
B b = (B) a;
b.tell1(); //B--tell1 调用子类自己的方法
b.tell2(); //A--tell2 子类继承父类,调用父类的方法
b.tell3(); //B--tell3 调用子类自己的方法
}
}
class A {
public void tell1() {
System.out.println("A--tell1");
}
public void tell2() {
System.out.println("A--tell2");
}
}
class B extends A {
public void tell1() {
System.out.println("B--tell1");
}
public void tell3() {
System.out.println("B--tell3");
}
}