开发者

Access Outer Class this instance

how do we access outer class this instance: eg in

Class A {

   Class B {

      this.helloB();
开发者_C百科      (A's this).hello()
   }
}

how do we access A's this instance in Java


Just call

A.this.hello()


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).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜