class Outner
{
int x = 4;
void metool()
{
int y = 5;
class Inner
{
void show()
{
System.out.println(y);
}
}
new Inner().show();
}
}
class InnerDemo02
{
public static void main(String[] args)
{
new Outner().metool();
}
}
为什么我的局部变量y没有定义成最终,没用final修饰,也可以编译通过。显示结果啊。大家帮忙看下,
|
|