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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© zy18692243338 中级黑马   /  2015-5-7 20:58  /  540 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Outer
{       
        private int num=4;
        public void test(){
                Inner inner=new Inner();
                inner.show();
        }

         class Inner
        {
               
                void show()
                {
                        System.out.println("num"+num);
                }

        }       
}
class classExample
{
        public static void main(String[] args)
        {
                Outer.outer=new Outer();
                Outer.test();
        }
}

其中的Outer.outer=new Outer();为什么这么写???表示什么意思

4 个回复

倒序浏览
学习中。。。。
回复 使用道具 举报
  1. public static void main(String[] args)
  2.         {
  3.                 Outer outer=new Outer();
  4.                 outer.test();
  5.         }
复制代码
回复 使用道具 举报
在学习  还不懂
回复 使用道具 举报
那个写法是错误的,编译不通过
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马