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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 李节起 中级黑马   /  2012-4-7 23:40  /  1683 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


class Outer
{
        int outer1=100;
        void test()
        {
                Inner in=new Inner(this);
                in.display();
        }
        
        public static void main(String[] args)
        {
                Outer outer=new Outer();
                outer.test();
        }
}
class Inner
        {
                Outer outer;
                public Inner(Outer outer)
                {
                        this.outer=outer;
                }
                void display()
                {
                        System.out.println("outer1="+outer.outer1);
                }
        }
Inner in=new Inner(this);中的this到底指的是什么?

3 个回复

倒序浏览
Inner in=new Inner(this);   this就是  public Inner(Outer outer)   中的Outer 类型的 outer
回复 使用道具 举报
Inner in=new Inner(this)实例化,要向里面传一个参数,这个参数是outer类类型。this代表的是本累的引用,也就是代表Outer这个类的对象的地址。
回复 使用道具 举报
哈哈,看的人少,回一下
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马