本帖最后由 weiyi 于 2014-11-27 20:00 编辑
class Outer
{
int x = 3;
void method()
{
int y = 4;
class Inner
{
void function()
{
System.out.println(y);
}
}
new Inner().function();
}
}
class InnerClassDemo3
{
public static void main(String[] args)
{
new Outer().method();
}
}
谁能帮我编译运行一下上面这个程序,能不能得到结果?
我的电脑可以通过!jdk1.8版本的。
告诉我结果,在线等啊。谢谢啦 |