本帖最后由 杜成龙 于 2013-5-26 11:14 编辑
- class Outer
- {
- int x=3;
- public void show()
- {
- int y=4;
- class Inner
- {
- void methed()
- {
- System.out.println(this.y);
- }
- }
- new Inner().methed();
- }
- }
- class Yanzhen
- {
- public static void main(String[] args)
- {
- new Outer().show();
- }
- }
复制代码 各位,有谁能帮忙看下这个程序运行后为什么显示找不到y,谢谢!
|