标题: 关于内部类、静态内部类中的静态与非静态的成员的访问? [打印本页] 作者: 几米丶 时间: 2015-2-4 16:52 标题: 关于内部类、静态内部类中的静态与非静态的成员的访问? 如下程序中
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