标题: 内部类 [打印本页] 作者: 张昶 时间: 2013-12-21 20:41 标题: 内部类 class A {
int x = 1;
class B {
int x = 2;
void func() {
int x = 3;
System.out.println( ? );
}
}
}
在问号处,怎么输出三个X的值?求解???
作者: 776699 时间: 2013-12-21 20:54
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();