zoukankan      html  css  js  c++  java
  • Spring框架中stopwatch(秒表)

    StopWatch对应的中文名称为秒表,经常我们对一段代码耗时检测的代码如下:

    long startTime = System.currentTimeMillis();

    // 你的业务代码

    long endTime = System.currentTimeMillis();

    long costTime = endTime -startTime;

    System.err.println("该段代码耗时:" + costTime + " ms");

    改进的代码写法:

    我们可以利用已有的工具类中的秒表,常见的秒表工具类有org.springframework.util.StopWatch、org.apache.commons.lang.time.StopWatch以及谷歌提供的guava中的秒表(这个我没怎么用过)。这里重点讲下,org.springframework.util.StopWatch的用法。

    org.springframework.util.StopWatch的用法:

    查看其源码:

    public class StopWatch {

    private final String id;

    private boolean keepTaskList;

    private final List<StopWatch.TaskInfo> taskList;

    private long startTimeMillis;

    private boolean running;

    private String currentTaskName;

    private StopWatch.TaskInfo lastTaskInfo;

    private int taskCount;

    private long totalTimeMillis;

    ...

    }

    可以看到有一个List<StopWatch.TaskInfo> taskList,用于存储一组任务的耗时时间。这个很有用比如:我们可以记录多段代码耗时时间,然后一次性打印(这里:org.springframework.util.StopWatch提供了一个prettyString()函数用于按照指定格式打印出耗时)

    举个例子:

    public static void main(String[] args) throws InterruptedException {

    // 定义一个计数器

    StopWatch stopWatch = new StopWatch("统一一组任务耗时");

    // 统计任务一耗时

    stopWatch.start("任务一");

    Thread.sleep(1000);

    stopWatch.stop();

    // 统计任务二耗时

    stopWatch.start("任务二");

    Thread.sleep(2000);

    stopWatch.stop();

    // 打印出耗时

    String result = stopWatch.prettyPrint();

    System.err.println(result);

    }

    结果为:

    StopWatch '统一一组任务耗时': running time (millis) = 3000

    -----------------------------------------

    ms % Task name

    -----------------------------------------

    01000 033% 任务一

    02000 067% 任务二

    分析:

    可以看到可以统一定义一个计数器为“统一一组任务耗时”,然后看到整段代码的耗时。以及各个部分程序代码的执行时间,并且输出的格式帮我们整理好了。

  • 相关阅读:
    银行家算法实例(转)
    DNS中的七大资源记录介绍!(转)
    android之存储篇_SQLite数据库_让你彻底学会SQLite的使用(转)
    回顾HTML5的语义化元素
    vueJs2.0学习笔记(六)
    vueJs2.0学习笔记(五)
    vueJs的学习笔记(四)
    vueJs2.0学习笔记(三)
    vueJs的学习笔记(二)
    vueJs 2.0学习笔记(一)
  • 原文地址:https://www.cnblogs.com/webwangbao/p/9229566.html
Copyright © 2011-2022 走看看