gpt4 book ai didi

java - 重写有异常编译器错误的方法

转载 作者:行者123 更新时间:2023-11-30 06:22:46 25 4
gpt4 key购买 nike

“a.eat()”下面的代码会导致编译错误,需要声明或捕获该错误。

class Animal {
public void eat() throws Exception {}
}

class Dog extends Animal {
public void eat() {}

public static void main(String [] args) {
Animal a = new Dog();
Dog d = new Dog();
d.eat();
a.eat();//Causes compilation error as 'a' was not declared or caught
}
}

为什么编译器仍然认为您正在调用声明异常的方法?为什么编译器看不到该方法已被子类型覆盖,如“d.eat()”中所示?

最佳答案

编译器只知道 aAnimal 。那是因为拥有它是完全合法的

class HairballException extends Exception {}

class Cat extends Animal {
public void eat() throws HairballException {}
}

然后是a.eat();之前:

a = new Cat();

变量a可以是 Animal任何类。编译器不能假设 a仍然是Dog ,所以它必须强制它可以抛出 Exception .

如果你真的不想捕获ExceptionAnimaleat()方法可能会抛出,然后强制转换 aDog在调用eat()之前.

关于java - 重写有异常编译器错误的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47783132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com