abstract class GetTime
{
private long start;
private long end;
public final void getTime()
{
start=System.currentTimeMillis();
runcode();
end=System.currentTimeMillis();
System.out.print("毫秒"+(end-start));
}
public abstract void runcode();
}
class SubTime extends GetTime
{
public void runcode()//你写是runcod
{
for(int x=0;x<1000;x++)
{
System.out.print(x);
}
}
}
class test
{
public static void main(String[] args)
{
new SubTime().getTime();
}
}作者: Alan 时间: 2013-4-15 18:48
你没有复写 复写名错误作者: 黄玉昆 时间: 2013-4-15 20:02
如果问题未解决,请继续追问,如果没有问题了,请将帖子分类 改为“已解决”,谢谢作者: 山西_李帅 时间: 2013-4-15 20:17
abstract class GetTime
{
private long start;
private long end;
public final void getTime()
{
start=System.currentTimeMillis();
runcode();
end=System.currentTimeMillis();
System.out.print("毫秒"+(end-start));
}
public abstract void runcode(); //这里写错了。runcode
}
class SubTime extends GetTime
{
public void runcod()
{
for(int x=0;x<1000;x++)
{
System.out.print(x);
}
}
}
class test
{
public static void main(String[] args)
{
new SubTime().getTime();
}
}作者: ぺsimon☆ 时间: 2013-4-15 20:32
谢谢兄弟啦呵呵作者: 董维明 时间: 2013-4-15 20:55
{:soso_e127:}