深夜,临睡前写了个小程序,出了点小问题java
public class Test_drive { 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 Test_drive is accessible. Must qualify the allocation with an enclosing instance of type Test_drive (e.g. x.new A() where x is an instance of Test_drive).
(1)在stackoverflow上面查找到了相似的问题:http://stackoverflow.com/questions/9560600/java-no-enclosing-instance-of-type-foo-is-accessible/9560633#9560633spa
(2)下面简单说一下个人理解:code
在这里,A和B都是Test_drive的内部类,相似于普通的实例变量,若是类的静态方法不能够直接调用类的实例变量。在这里,内部类不是静态的内部类,因此,直接赋值(即实例化内部类),因此程序报错。blog
(3)解决的方法能够有如下两种:get
(1)将内部类定义为static,即为静态类it
(2)将A a = new A();B b = new B();改成:io
Test_drive td = new Test_drive(); A a = td.new A(); B b = td.new B();
附注:写到这里好困。若是你们有更好的理解,请在下面留言。谢谢。class