本帖最后由 王国华 于 2012-3-28 15:41 编辑
class Outer{
Outer(){}
public void getValue(){}
public Outer method(){
final String name="abc";
final int age=26;
class Inner extend Outer{
public void getValue(){
System.out.println(name+":"+age);
}
}
return new Inner();
}
}
}
主函数中通过下列方法访问
Outer in = new Outer().method();
in.getValue();
//使用了多态 |