日期:2014-05-20 浏览次数:20785 次
class T { static class Nested { void sayHello() { System.out.println("hello"); } } } class C { public static void main(String... args) { new T.Nested().sayHello(); //不需要外部类T的实例,这里T只是一个类Nested的限定名称的一部分 } } ------解决方案--------------------