6、 在打印语句中如何打印这3个x变量?
class A {
int x = 1;
class B {
int x = 2;
void func() {
int x = 3;
System.out.println( ? );
}
}
}
- public class Test6 {
- public static void main(String[] args) {
- A.B b=new A().new B();//建立class B对象
- b.func();//通过class B对象调用其方法
- }
- }
- class A
- {
- int x = 1;
- class B
- {
- int x = 2;
- void func()
- {
- int x = 3;
- System.out.println("func方法中的变量x"+x);
- System.out.println("class B中的成员变量x"+this.x);
- System.out.println("class A中的成员变量x"+A.this.x);
- }
- }
- }
复制代码 |
|