StopWatch,计算代码耗时时间
StopWatch 是 org.springframework.util 包下的类
使用方法:
StopWatch sw = new StopWatch("给该StopWatch取个名字,无所吊谓"); sw.start("给这次计时取个名字");//表示开始 sw.stop();//表示结束
注意事项:
需要计时的代码需要包含在 start() 与 stop() 中间
打印:
System.out.println(sw.getTotalTimeSeconds());// 结果(秒):1.0055953 System.out.println(sw.getLastTaskTimeMillis());
// 结果(纳秒):StopWatch 'test': running time = 1005595300 ns
System.out.println(sw.prettyPrint());
/*结果(纳秒): ns % Task name
----------------------------------------------------------
1005595300 100% 显示 start() 里的内容*/
System.out.println(sw.shortSummary());// 结果(毫秒):1005
Leslie Cheung 随笔
一生大笑能几回,斗酒相逢需醉倒
本文来自博客园,作者:Leslie_Cheung,转载请注明原文链接:https://www.cnblogs.com/Leslie-Cheung/p/17172472.html