你这段代码好乱啊,而且有错误。。。我改了一下是这个意思的代码吗?
- class InnerClassDemo
- {
- class Inner
- {
- public void show()
- {
- System.out.println("");
- }
- }
-
- public void method()
- {
- this.new Inner().show();
- }
-
- public static void main(String[] args)
- {//static 不允许this
- This.new Inner().show();//错误,,inner类需要定义成static
- }
- }
复制代码 |