如何从内部类访问外部类的“this”?
2022-08-31 13:28:58
是否可以从 Java 内部类中获取对 的引用?this
即
class Outer {
void aMethod() {
NewClass newClass = new NewClass() {
void bMethod() {
// How to I get access to "this" (pointing to outer) from here?
}
};
}
}