容易记住
访问修饰符可以从限制更改为限制更少,
例如从受保护到公共,但反之亦然
throws签名可以是从父异常更改为子异常类,但反之亦然
此代码有效
public class A {
protected String foo() throws Exception{
return "a";
}
class B extends A {
@Override
public String foo() throws IOException{
return "b";
}
}
}
覆盖的foo方法具有公共访问权限,不受保护并抛出IOException,即Exception的子级
此代码无效
public class A {
public String foo() throws IOException{
return "a";
}
class B extends A {
@Override
protected String foo() throws Exception{
return "b";
}
}
}
覆盖的foo方法具有更多限制访问修饰符并抛出异常,即IOException的子代
顺便说一句,你可以从超类覆盖方法,而不是抛出ecxeptions
此代码有效
public class A {
public String foo() throws IOException{
return "a";
}
class B extends A {
@Override
public String foo(){
return "b";
}
}
}