为什么在内部类中输出外部类中private name要用HelloWorld.this.name
而不能用this.name
this表示当前对象;this.name中的this指的是内部类的对象,HelloWorld.this.name中的this指的是HelloWorld这个类的对象
讲解的非常到位。看了就懂,还能记住。