没有限定词,
x()将递归。使用限定符时,将
x()调用封闭实例的方法。
class Envelope { void x() { System.out.println("Hello"); } class Enclosure { void x() { Envelope.this.x(); } }}
欢迎分享,转载请注明来源:内存溢出
没有限定词,
x()将递归。使用限定符时,将
x()调用封闭实例的方法。
class Envelope { void x() { System.out.println("Hello"); } class Enclosure { void x() { Envelope.this.x(); } }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)