哦,原来与此,也可以这样调用。
int num = 10;
public static void main(String[] args) {
new Test6().new Inner1().show();
}
class Inner1 {
public int num = 20;
public void show() {
int num = 30;
System.out.println(num);
System.out.println(this.num);
System.out.println(Test6.this.num);
}
}作者: java小白怕不 时间: 2016-6-11 21:57
看不出来 就可以去看看知识点去了,作者: lionc123 时间: 2016-6-11 23:08
总结的不错,学习了