外部类的this关键字用法
package two.com;
public class Demo02 {//外部类
public void show(){
System.out.println("你好!");
}
public class Demo002{//内部类
public void show(){
System.out.println("nihao!");
}
}
public static void main(String[] args) {
Demo02 hello=new Demo02();
Demo002 hello2=hello.new Demo002();
hello.this.show();
}
}
最后的hello.this.show();不对 请问应该怎么改正?