1.父类对象可以强制转换为子类对象,但是前提是此父类对象为子类对象实例化的结果。
e.g. Fruit fruit=new Apple();
Apple a=(Apple)fruit;//ok
e.g. 假设Apple类继承于Fruit类,
Object fruit=new Fruit();
Object apple=(Apple)fruit;//wrong
2.子类的实例向父类转型是为了实现多态。
2022-02-10 23:38:47
1.父类对象可以强制转换为子类对象,但是前提是此父类对象为子类对象实例化的结果。
e.g. Fruit fruit=new Apple();
Apple a=(Apple)fruit;//ok
e.g. 假设Apple类继承于Fruit类,
Object fruit=new Fruit();
Object apple=(Apple)fruit;//wrong
2.子类的实例向父类转型是为了实现多态。