本文主要是介绍StopWatch的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
文章目录
- StopWatch
- 1.简介
- 2.stopWatch 案例
- sw.prettyPrint()
- 3.两个方法
- shortSummary()
- getTotalTimeMillis()
- 4.StopWatch优缺点:
- 优点:
- 缺点:
StopWatch
1.简介
- StopWatch是位于org.springframework.util包下的一个工具类
- 通过它可方便的对程序部分代码进行计时(ms级别),适用于同步单线程代码块。
在未使用这个工具类之前,如果我们需要统计某段代码的耗时,我们会这样写:
public static void main(String[] args) throws InterruptedException {test0();}public static void test0() throws InterruptedException {long start = System.currentTimeMillis();// do somethingThread.sleep(100);long end = System.currentTimeMillis();long start2 = System.currentTimeMillis();// do somethingThread.sleep(200);long end2 = System.currentTimeMillis();System.out.println("某某1执行耗时:" + (end - start));System.out.println("某某2执行耗时:" + (end2 - start2));}
可以看出我们的代码比较繁琐,如果要统计更多的任务计时呢?更繁琐,甚至让代码显得有点low
2.stopWatch 案例
sw.prettyPrint()
@Testpublic void Test1() throws InterruptedException {StopWatch sw = new StopWatch("test");sw.start("task1");// do somethingThread.sleep(100);sw.stop();sw.start("task2");// do somethingThread.sleep(200);sw.stop();System.out.println("==========sw.prettyPrint()==========");System.out.println(sw.prettyPrint());}
3.两个方法
shortSummary()
getTotalTimeMillis()
@Testpublic void Test1() throws InterruptedException {StopWatch sw = new StopWatch("test");sw.start("task1");// do somethingThread.sleep(100);sw.stop();sw.start("task2");// do somethingThread.sleep(200);sw.stop();System.out.println("==========sw.shortSummary()==========");System.out.println(sw.shortSummary());System.out.println("==========sw.getTotalTimeMillis()==========");System.out.println(sw.getTotalTimeMillis());}
其实以上内容在该工具类中实现也极其简单,通过start与stop方法分别记录开始时间与结束时间,其中在记录结束时间时,会维护一个链表类型的tasklist属性,从而使该类可记录多个任务,最后的输出也仅仅是对之前记录的信息做了一个统一的归纳输出,从而使结果更加直观的展示出来。
4.StopWatch优缺点:
优点:
- spring自带工具类,可直接使用;
- 代码实现简单,使用更简单;
- 统一归纳,展示每项任务耗时与占用总时间的百分比,展示结果直观,性能消耗相对较小,并且最大程度的保证了start与stop之间的时间记录的准确性;
- 可在start时直接指定任务名字,从而更加直观的显示记录结果。
缺点:
- 一个StopWatch实例一次只能开启一个task,不能同时start多个task,并且在该task未stop之前不能,start一个新的task,必须在该task stop之后才能开启新的task,若要一次开启多个,需要new不同的StopWatch实例;
- 代码侵入式使用,需要改动多处代码
这篇关于StopWatch的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!