本帖最后由 、海 于 2014-6-4 22:02 编辑
- Outer {
- int x =3;
- void method(){
- class Inner{
- void function(){
- System.out.println(Outer.this.x)//此处用法与直接用 x 有什么区别?
- }
- }
- new Inner().function();
- }
- }
复制代码
public class InnerClassTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
new Outer().method();
}
}
|
|