当前位置: 代码迷 >> 综合 >> No enclosing instance of type TestInner is accessible.
  详细解决方案

No enclosing instance of type TestInner is accessible.

热度:43   发布时间:2023-09-19 23:19:13.0

深夜,临睡前写了个小程序,出了点小问题

public class TestInner{public static void main(String[] args){A a = new A();              //报错B b = new B();              //报错System.out.println(b instanceof A);}class A{int a;}class B extends A{}
}

上面两个语句报错信息如下:

No enclosing instance of type TestInneris accessible. Must qualify the allocation with an enclosing instance of type Test_drive (e.g. x.new A() where x is an instance of TestInner).

(1)在stackoverflow上面查找到了类似的问题:http://stackoverflow.com/questions/9560600/java-no-enclosing-instance-of-type-foo-is-accessible/9560633#9560633

(2)下面简单说一下我的理解:

  在这里,A和B都是Test_drive的内部类,类似于普通的实例变量,如果类的静态方法不可以直接调用类的实例变量。在这里,内部类不是静态的内部类,所以,直接赋值(即实例化内部类),所以程序报错。

 

(3)解决的方法可以有以下两种:

  (1)将内部类定义为static,即为静态类

  (2)将A a = new A();B b = new B();改为:

TestInner td = new TestInner();
A a = td.new A();
B b = td.new B();
  相关解决方案