在下面的示例中:
class Parent{
void fun() {
System.out.println("Parent class");
}
}
class Child extends Parent{
}
public class Main {
public static void main(String[] ar) {
Child ch = new Child();
ch.fun();
}
}
继承示例,在实例化对象时,我们可以创建一个Parent ch = new Child();有效的对象,但是为什么不能有这样的对象呢Child ch = new Parent(); ?
富国沪深
炎炎设计
相关分类