是否可以this从Java内部类中获取对它的引用?
this
即
class Outer { void aMethod() { NewClass newClass = new NewClass() { void bMethod() { // How to I get access to "this" (pointing to outer) from here? } }; } }
您可以像这样访问外部类的实例:
Outer.this