我有以下代码:
class Hello {
class Thing {
public int size;
Thing() {
size = 0;
}
}
public static void main(String[] args) {
Thing thing1 = new Thing();
System.out.println("Hello, World!");
}
}
我知道Thing
什么都不做,但是我的Hello, World程序没有它编译也很好。只有我定义的类不及格。
它拒绝编译。我在创建新Thing的那一行得到No enclosing instance of type Hello is accessible."
。我猜是:
什么好主意吗?