- class Outer
- {
- private static int x = 3;
-
- static class Inner//静态内部类
- {
- static void function()
- {
- System.out.println("innner :"+x);
- }
- }
- static class Inner2
- {
- void show()
- {
- System.out.println("inner2 show");
- }
- }
- }
- class InnerClassDemo2
- {
- public static void main(String[] args)
- {
- new Inner2().show();
- }
- }
复制代码
InnerClassDemo2.java:29: 错误: 找不到符号
new Inner2().show();
^
符号: 类 Inner2
位置: 类 InnerClassDemo2
1 个错误
|