黑马程序员技术交流社区

标题: 读取程序结果,并给出解释 [打印本页]

作者: 吕晓阳    时间: 2015-4-17 09:18
标题: 读取程序结果,并给出解释
x输出结果为多少,为什么
  1. class Outer
  2. {
  3.         private int x = 3;

  4.        
  5.         class Inner//内部类
  6.         {
  7.                 int x = 4;
  8.                 void function()
  9.                 {
  10.                         int x = 6;
  11.                         System.out.println(Outer.this.x);
  12.                         System.out.println(this.x);
  13.                         System.out.println(+x);
  14.                 }
  15.         }
  16.         void method()
  17.         {
  18.                 Inner in = new Inner();
  19.                 in.function();
  20.         }
  21. }
  22. class  InnerClassDemo
  23. {
  24.         public static void main(String[] args)
  25.         {
  26.                 Outer out = new Outer();
  27.                 out.method();
  28.         }
  29. }
复制代码




作者: lwj123    时间: 2015-4-17 10:49
System.out.println(Outer.this.x);外部类的成员3
System.out.println(this.x);内部类的成员4
System.out.println(+x);局部变量6





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