JAVA内部类要点及面试题

(编辑整理中...)

 

QUESTION NO: 4
1. public class Outer{
2. public void someOuterMethod() {
3. // Line 3
4. }
5. public class Inner{}
6. public static void main( String[]argv ) {
7. Outer o = new Outer();
8. // Line 8
9. }
10. }
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();
       /**
        * 下面两种用法,都报下面的错误:
        * No enclosing instance of type Outer is accessible.
        * Must qualify the allocation with an enclosing instance
        * of type Outer(e.g. x.new A() where x is an instance of Outer)
        */    
       //new Outer.Inner();
       //new Inner();      
    }
}
 
 
1.关键字 .this与.new (ref: http://www.iteye.com/topic/442435
public class Outer {
	private int num;

	public Outer() {}

	public Outer(int num) {
		this.num = num;
	}

	private class Inner {
		public Outer getOuter() {
			return Outer.this;
		}

		public Outer newOuter() {
			return new Outer();
		}
	}

	public static void main(String[] args) {
		Outer test = new Outer(5);
		Outer.Inner inner = test.new Inner();

		Outer outer = inner.getOuter();
		Outer outer2 = inner.newOuter();
		System.out.println(outer.num);
		System.out.println(outer2.num);
	}

}
输出结果:
           5
           0
 
 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值