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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

不是说内部类定义在局部时,不可以访问它所在局部中的.变量,为什么我的可以???ps 没有加final 修饰。

class InnerClassTest
{
        public static void main(String[] args)
        {
                new Outer().show();
        }
}
class Outer
{
        int x =3;
        void show()
        {
                int y =6;
                class Inner
                {
                        void method()
                        {
                                System.out.println("inner run......"+y);
                        }
                }
                new Inner().method();
        }
}

2 个回复

倒序浏览
jdk新版本1.8有个新特性  不用加
回复 使用道具 举报
JYcainiao 发表于 2015-11-16 16:06
jdk新版本1.8有个新特性  不用加

3Q
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马