Mam następujący kod. Chcę zdobyć obiekt klasy zewnętrznej, za pomocą którego utworzyłem obiekt klasy wewnętrznej inner
. Jak mogę to zrobić?
public class OuterClass {
public class InnerClass {
private String name = "Peakit";
}
public static void main(String[] args) {
OuterClass outer = new OuterClass();
InnerClass inner = outer.new InnerClass();
// How to get the same outer object which created the inner object back?
OuterClass anotherOuter = ?? ;
if(anotherOuter == outer) {
System.out.println("Was able to reach out to the outer object via inner !!");
} else {
System.out.println("No luck :-( ");
}
}
}
EDYCJA: Cóż, niektórzy z was zasugerowali zmodyfikowanie klasy wewnętrznej przez dodanie metody:
public OuterClass outer() {
return OuterClass.this;
}
Ale co jeśli nie mam kontroli, aby zmodyfikować klasę wewnętrzną, to (tylko w celu potwierdzenia) mamy inny sposób na uzyskanie odpowiedniego obiektu klasy zewnętrznej z obiektu klasy wewnętrznej?