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