您的位置:首页 > 其它

No enclosing instance of type XXX is accessible

2017-12-25 16:22 381 查看
Question:No enclosing instance of type MermoryGroup is accessible. Must qualify the allocation with an enclosing instance of type MermoryGroup (e.g. x.new A() where x is an instance of MermoryGroup).



MermoryGroup为内部类,没有可访问的内部类MermoryGroup的实例,必须分配一个合适的内部类MermoryGroup的实例(如x.new A(),x必须是MermoryGroup的实例。)
内部类是动态的,也就是开头以public class开头。而主程序是public static class main。在Java中,类中的静态方法不能直接调用动态方法。只有将某个内部类修饰为静态类,然后才能够在静态类中调用该类的成员变量与成员方法。所以在不做其他变动的情况下,最简单的解决办法是将public class改为public static class.






或使用以下方式:


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  innert class
相关文章推荐