class Outer
{
int x=4;
public void function(final int y)
{
class Inner
{
void show()
{
System.out.println(Outer.this.x);
System.out.println("y="y);//这里的输出语句为什么只能输出y而不能输出"y="y
}
}
new Inner().show();
}
}
public class MingTian4
{
public static void main(String[] args)
{
new Outer().function(7);
}
}