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
Just call
A.this.hello()
2.1m questions
2.1m answers
60 comments
57.0k users