Java 中的 Downcasting
Java 中允许上行,但是下放会给出编译错误。
编译错误可以通过添加强制转换来消除,但无论如何都会在运行时中断。
在这种情况下,为什么Java允许在运行时执行下放?
这个概念有什么实际用途吗?
public class demo {
public static void main(String a[]) {
B b = (B) new A(); // compiles with the cast,
// but runtime exception - java.lang.ClassCastException
}
}
class A {
public void draw() {
System.out.println("1");
}
public void draw1() {
System.out.println("2");
}
}
class B extends A {
public void draw() {
System.out.println("3");
}
public void draw2() {
System.out.println("4");
}
}