本帖最后由 踏雪风暴 于 2014-6-27 00:36 编辑
我运行下面的代码
abstract class GetTime
{
public void getTime()
{
long start = System.currentTimeMillis();
runcode();
long end = System.currentTimeMillis();
System.out.println("毫秒:"+(end-start));
}
public abstract void runcode();
}
class SubTime extends GetTime
{
public void runcode()
{
for(int x=0; x<4000; x++)
{
System.out.print(x); // 这里根本不会显示出来,只显示最后的毫秒
}
}
}
class aa
{
public static void main(String[] args)
{
SubTime gt = new SubTime();
gt.getTime();
}
}
除非改变其输出的样式,否则根本不会显示输出的数字,我不清楚是不是个人软件问题,
还是myeclipse 的一个bug |