创建java类中类出现is not an enclosing class

 在CODE上查看代码片派生到我的代码片
  1. public class A {  
  2.     public class B {  
  3.           
  4.     }  
  5. };  

需要实例B类时,按照正逻辑是,A.B ab = new A.B();

那么编译器就会出现一个错误--"is not an enclosing class"

再翻看相关的Java代码,发现原来写法出错了!正确的做法是

[java] view plain copy 在CODE上查看代码片派生到我的代码片
  1. A a = new A();  
  2. A.B ab = a.new B();  


没有静态(static)的类中类不能使用外部类进行.操作,必须用实例来进行实例化类中类.

posted @ 2019-12-22 18:28  那些年的代码  阅读(3564)  评论(0编辑  收藏  举报