今天写demo的时候,遇到一个问题,关于内部类的,这里写一下
错误信息:No enclosing instance of type TextRunnable is accessible. Must qualify the allocation with an enclosing instance of type TextRunnable (e.g. x.new A() where x is an instance of TextRunnable).
解决的方法,很容易
原来我写的内部类是动态的,也就是开头以public class开头。而主程序是public static class main。在Java中,类中的静态方法不能直接调用动态方法。只有将某个内部类修饰为静态类,然后才能够在静态类中调用该类的成员变量与成员方法。所以在不做其他变动的情况下,最简单的解决办法是将public class改为public static 即可