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 随笔

posted @ 2023-03-02 17:07  Leslie_Cheung  阅读(54)  评论(0编辑  收藏  举报