黑马程序员技术交流社区

标题: 关于内部类、静态内部类中的静态与非静态的成员的访问? [打印本页]

作者: 几米丶    时间: 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

= " + x);
        }
    }
}
题目中的B为A的内部类,其中B中的func()与B中的x是不是同为成员变量??如果将内部类B前定义为静态的static怎样访问B中的x呢?





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2