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()
1.4m articles
1.4m replys
5 comments
57.0k users