本帖最后由 李志卫 于 2013-2-25 15:30 编辑
public class Test7
{
public static void main(String args[])
{
new Outer().new Inter().function(55);
new Outer().Method2(88);
}
}
class Outer //外部类
{
private int x = 0;
private void Method(int x)
{
System.out.println(x);
}
public void Method2(int z)
{
new Inter().function(z);
}
class Inter //内部类
{
public void function(int y) //如果我这里 写int x
{
x = y; //那么这里应该怎么写? 内部类方法局部变量与外部类成员变量相冲突的情况
// Method(x);
}
}
}
|
|