考虑下面的代码。
interface I {
default Number f() {
return 0;
}
}
class A {
private Number f() { // if Number is replaced with other type, all will work fine
return 1;
}
}
class B extends A implements I {
}
class Main {
public static void main(String[] args) {
System.out.println(new B().f());
}
}
该程序产生一个IllegalAccessError
.
Exception in thread "main" java.lang.IllegalAccessError: class tasks.a1.Main tried to access private method 'java.lang.Number tasks.a1.A.f()' (tasks.a1.Main and tasks.a1.A are in unnamed module of loader 'app')
at tasks.a1.Main.main(Sub.java:20)
但是如果A.f()
用Integer
or替换返回值Object
,就不会报错,会执行默认的方法。
为什么在上面的代码片段中IllegalAccessError
发生但在所描述的修改之后一切正常?
与私有方法冲突时在接口中调用默认方法的问题中的两种方法具有相同的返回类型(即,void
),但我想知道为什么在使返回类型不同后错误消失了。