所以我想弄清楚为什么一个程序会这样编译,希望你们能为我解释一下。
class Vehicle{
public void drive() throws Exception{
System.out.println("Vehicle running");
}
}
class Car extends Vehicle{
public void drive(){
System.out.println("Car Running");
}
public static void main(String[] args){
Vehicle v = new Car();
Car c = new Car();
Vehicle c2 = (Vehicle) v;
c.drive();
try {
v.drive();
} catch (Exception e) {
e.printStackTrace();
} //try v.drive()
try {
c2.drive();
} catch (Exception e) {
e.printStackTrace();
} //try c2.drive()
}
}
所以上述程序的输出将是
汽车运行
汽车运行
汽车运行
我的问题是,为什么我必须做一个 try/catch 块来为 v 和 c2 对象而不是 c 调用 drive() 方法?它们都是 Car 的实例,所以这里发生了什么?