标题: static方法重写问题 [打印本页] 作者: 周朋飞 时间: 2012-6-28 11:51 标题: static方法重写问题 看起来显示了一个static 方法被重写了
class Base
{
public static void stamethod()
{
System.out.println("Base");
}
}
public class ItsOver extends Base
{
public static void main(String argv[])
{
15
ItsOver so = new ItsOver();
so.stamethod();
}
public static void stamethod()
{
System.out.println("amethod in StaOver");
}
}