统计程序耗时神器
作者:互联网
在我们日常工作中,一般怎么计算一段代码的耗时?
System.currentTimeMillis(),相信大家不陌生,还有一种就是StopWatch
System.currentTimeMillis()
使用
- 记录开始时间
- 记录结束时间
- 计算两者差值
代码实现
public static void statisticsTime() throws InterruptedException {
long start;
long end;
start = System.currentTimeMillis();
Thread.sleep(300);
end = System.currentTimeMillis();
System.out.println("测试睡眠1耗时:" + (end - start) + "ms");
start = System.currentTimeMillis();
Thread.sleep(200);
end = System.currentTimeMillis();
System.out.println("测试睡眠2耗时:" + (end - start) + "ms");
start = System.currentTimeMillis();
Thread.sleep(1000);
end = System.currentTimeMillis();
System.out.println("测试睡眠3耗时:" + (end - start) + "ms");
}
运行结果
测试睡眠1耗时:302ms
测试睡眠2耗时:201ms
测试睡眠3耗时:1000ms
StopWatch
一个计时工具类,有很多个,这里使用的是org.springframework.util包下的StopWatch
使用
通过创建StopWatch,然后调用start方法和stop方法来记录时间,最后通过prettyPrint打印出统计分析信息。
代码实现
public static void statisticsTimeByStopWatch() throws InterruptedException {
StopWatch stopWatch = new StopWatch("测试");
stopWatch.start("测试睡眠1");
Thread.sleep(300);
stopWatch.stop();
stopWatch.start("测试睡眠2");
Thread.sleep(200);
stopWatch.stop();
stopWatch.start("测试睡眠3");
Thread.sleep(1000);
stopWatch.stop();
System.out.println(stopWatch.prettyPrint());
}
运行结果
StopWatch '测试': running time (millis) = 1521
-----------------------------------------
ms % Task name
-----------------------------------------
00300 020% 测试睡眠1
00221 015% 测试睡眠2
01000 066% 测试睡眠3
可以直观看到总的耗时,以及各种组成部分的耗时,很方便
标签:start,程序,System,currentTimeMillis,神器,耗时,测试,stopWatch 来源: https://www.cnblogs.com/huozhonghun/p/16378737.html