我正在阅读“Thinking of Java”,我遇到了一些奇怪的例子(对我来说)
class StaticTest {
static class StaticClass {
int i = 5;
}
}
public class I {
public static void main(String[] args) {
// TODO Auto-generated method stub
StaticTest.StaticClass t = new StaticTest.StaticClass();
}
}
如何创建静态类的实例?规则“您不能创建静态类的实例”是否有一些例外?
提前致谢