Bir Java iç sınıfından this
referansı almak mümkün mü?Dış sınıfın "bu" bir iç sınıftan nasıl erişilebilir?
Böyle dış sınıfın örneğini erişebilir
class Outer {
void aMethod() {
NewClass newClass = new NewClass() {
void bMethod() {
// How to I get access to "this" (pointing to outer) from here?
}
};
}
}