为什么不加final 也能通过运行?
class Demo
{
public static void main(String[] args)
{
Wai w=new Wai();
w.show1();
}
}
class Wai
{
public void show1()
{
int x=1; //为什么我的电脑上不用 final修饰也能通过 发给别人就报错!
class Nei
{
public void show2()
{
System.out.println(x);
}
}
Nei w=new Nei();
w.show2();
}
}