Which instantiates an instance of Inner?

本文探讨了如何在Java中实例化内部类(Inner Class)的问题,特别是针对不同上下文中实例化的正确性和可行性进行了详细分析。
Which instantiates an instance of Inner?
A. new Inner(); // At line 3
B. new Inner(); // At line 8
C. new o.Inner(); // At line 8
D. new Outer.Inner(); // At line 8//new Outer().new Inner()
答案如下:
publicclass Outer {
    publicvoid someOuterMethod() {
       // Line 3
       new Inner();//放在这里不出错
    }
    publicclass Inner {
    }
 
    publicstaticvoid main(String[] argv) {
       Outer o= new Outer();
       // Line 8
       //o不能够被解释成为一种类型,出错
       //new o.Inner();
       /**
        *下面两种用法,都报下面的错误:
        *NoenclosinginstanceoftypeOuterisaccessible.
        *Mustqualifytheallocationwithanenclosinginstance
        *oftypeOuter(e.g.x.newA()wherexisaninstanceofOuter)
        */   
       //new Outer.Inner();
       //new Inner();      
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值