gpt4 book ai didi

java - 从内部类访问父级的 protected 方法时出现 IllegalAccessException

转载 作者:行者123 更新时间:2023-12-01 16:04:09 25 4
gpt4 key购买 nike

我遇到了一个非常奇怪的问题和一个奇怪的解决方案:

class Parent {
protected void aProtectedMethod() { doSomething(); }
}

class Child extends Parent {
void anotherMethod() {
new SomeInterface() {
public void interfaceMethod() {
aProtectedMethod();
}
};
}
}

当运行 child.anotherMethod() 时,我在 myProtectedMethod() 处收到 IllegalAccessException,说我的内部类无权访问父类...

但是,如果我添加:

protected void aProtectedMethod() { super.aProtectedMethod(); } 

在我的 child 类,一切都很好......

我想知道这是为什么?

最佳答案

关于java - 从内部类访问父级的 protected 方法时出现 IllegalAccessException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3025158/

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