how do we access outer class this instance: eg in
Class A {
Class B {
this.helloB();
(A's this).hello()
}
}
how do we access A's this instance in Java
how do we access outer class this instance: eg in
Class A {
Class B {
this.helloB();
(A's this).hello()
}
}
how do we access A's this instance in Java
By prefixing this
with the class: A.this.hello()
Similarly, when you want to create an instance of B outside of A, you can use a.new B()
(where a instanceof A == true
).