码迷,mamicode.com
首页 > 数据库 > 详细

java出现No enclosing instance of type main is accessible. Must qualify the allocation with an enclosing instance of type main (e.g. x.new A() where x is an instance of main).

时间:2017-08-16 21:49:24      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:location   没有   主程   内部类   under   java   实例   access   解决办法   

根据提示,没有可访问的内部类E的实例,必须分配一个合适的内部类E的实例(如x.new A(),x必须是E的实例。)看着这句提示,我就纳闷了,我已经用new实例化了这个类,为什么还不行呢。原来我写的内部类是动态的,也就是开头以public class开头。而主程序是public static class main。在Java中,类中的静态方法不能直接调用动态方法。只有将某个内部类修饰为静态类,然后才能够在静态类中调用该类的成员变量与成员方法。所以不做其他变动的情况下,最简单的解决办法是将public class改为public static class.

java出现No enclosing instance of type main is accessible. Must qualify the allocation with an enclosing instance of type main (e.g. x.new A() where x is an instance of main).

标签:location   没有   主程   内部类   under   java   实例   access   解决办法   

原文地址:http://www.cnblogs.com/cing/p/7375433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!