匿名内部类的外部类的关键字
在下面的代码片段中:
public class a {
public void otherMethod(){}
public void doStuff(String str, InnerClass b){}
public void method(a){
doStuff("asd",
new InnerClass(){
public void innerMethod(){
otherMethod();
}
}
);
}
}
是否有一个关键字可以从内部类引用外部类? 基本上我想做的是 outer.otherMethod()
或类似的东西,但似乎找不到任何东西。
In the following snippet:
public class a {
public void otherMethod(){}
public void doStuff(String str, InnerClass b){}
public void method(a){
doStuff("asd",
new InnerClass(){
public void innerMethod(){
otherMethod();
}
}
);
}
}
Is there a keyword to refer to the outer class from the inner class? Basically what I want to do is outer.otherMethod()
, or something of the like, but can't seem to find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,您使用 OuterClassName.this 来引用外部类的封闭实例。
在您的示例中,这将是
a.this.otherMethod()
In general you use
OuterClassName.this
to refer to the enclosing instance of the outer class.In your example that would be
a.this.otherMethod()