A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 梦醒?! 中级黑马   /  2015-4-19 15:03  /  658 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class Outer
{
      private int x=3;
      class Inner//内部类
      {
            int x=4;
            piblic void function()
             {
                   int x=5;
                   System.out.println("inner="+x);
              }
      }
}
外部类成员变量定义了x,为啥内部类成员变量定义了x,函数里的局部变量还能定义x


6 个回复

倒序浏览

class Outer
{
      private int x=3;
      class Inner//内部类
      {
            int x=4;
            piblic void function()
             {
                   int x=5;
                   System.out.println("inner="+x);
              }
      }
     void method()  //少了
     {
         inner in=new inner();
         in.function();
     }
}
回复 使用道具 举报
本帖最后由 仅此一抹心醉 于 2015-4-19 15:15 编辑
  1. <p>class Outer
  2. {
  3.         private int x = 3;
  4.         class Inner
  5.         {
  6.                 int x = 4;
  7.                 public void function()
  8.                 {
  9.                         int x = 5;</p><p>                        //主要就是x前面的省略不一样,每个x都有自己的全称
  10.                         System.out.println("Inner.x="+x);//Inner.x=5
  11.                         System.out.println("Inner.x="+this.x);//Inner.x=4
  12.                         System.out.println("Inner.x="+Outer.this.x);//Inner.x=3
  13.                 }
  14.         }
  15.         public static void main(String[] args)
  16.         {
  17.                 Outer.Inner oi = new Outer().new Inner();
  18.                 oi.function();
  19.         }
  20. }
  21. </p>
复制代码
回复 使用道具 举报
类中定义变量有问题么?函数中定义变量有问题么?你把内部类单独拉出来,能看的很清楚。
回复 使用道具 举报
仔细看视频!!楼上的楼上解释了
回复 使用道具 举报
赞一个,学习
回复 使用道具 举报
yas丶 中级黑马 2015-4-19 18:20:06
7#
局部变量和全局变量不一样
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马