在以下代码段中:
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(),或类似的东西,但似乎找不到任何东西。
outer.otherMethod()
通常,您OuterClassName.this用来指代外部类的封闭实例。
OuterClassName.this
在你的例子中,那将是a.this.otherMethod()
a.this.otherMethod()