UID: 109557
http://bbs.itheima.com/thread-103344-1-1.html
所在楼层:776699
中级黑马, 积分 140, 距离下一级还需 860 积分 沙发
发表于 半小时前 | 只看该作者
package test;
class A {
int x = 1;
class B
{
int x = 2;
void func() {
int x = 3;
System.out.println( x+"_"+this.x+"_"+A.this.x );
}
}
public void method(){
B b=new B();
b.func();
}
}
public class ABC {
public static void main(String[] args) {
A a=new A();
a.method();
}
}
|