最佳答案
是否有可能从 Java 内部类中获得对 this
的引用?
也就是说。
class Outer {
void aMethod() {
NewClass newClass = new NewClass() {
void bMethod() {
// How to I get access to "this" (pointing to outer) from here?
}
};
}
}