在我们日常工作中,一般怎么计算一段代码的耗时?
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
可以直观看到总的耗时,以及各种组成部分的耗时,很方便
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/88967.html