如下程序中
public class Test8 {
class A {
int x =5
class B {
int x =4;
void func()
{
int x = 3;
System.out.println( ? );
}
}
}
public static void main(String[] args) {
new B().func();
}
}
class A {
int x = 1;
static class B {
int x = 2;
void func() {
int x = 3;
System.out.print("A.X = " + new A().x + "; B.X = " + new B().x + "; X
= " + x);
}
}
}
题目中的B为A的内部类,其中B中的func()与B中的x是不是同为成员变量??如果将内部类B前定义为静态的static怎样访问B中的x呢?
|
|