各位大神,对于class A{
int x = 1;
class B {
int x = 2;
void func() {
int x = 3;
System.out.println(A.this.x+":"+this.x+":"+x );
}
}
}
我看到网上有的解决方法如下:
public class Test8 {
public static void main(String args[]) {
//创建A对象,
A a=new A();
//在对象A中创建对象B
A.B b=a.new B();
b.func();
}
}
class A{
int x = 1;
class B {
int x = 2;
void func() {
int x = 3;
System.out.println(A.this.x+":"+this.x+":"+x );
}
}
}
能不能解释这里面的奥秘啊,本人不是很懂
|
|