微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

比system.currentTimeMillis还要好用的统计耗时方法stopWatch

文章目录


我们在开发中通常用 system.currentTimeMillis统计每个任务的耗时,或者记录一段时间执行的时间,但是在 spirngboot源码中用到了 stopWatch统计耗时的方法,非常简介,好用。

引入jar包-如果是SpringBoot项目就不需要再去引入jar包

<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-core</artifactId>
</dependency>

springBoot的xml里面有如下jar包

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
 </dependency>

在多任务的情况下,StopWatch的好处就能完全体现出来

单个任务示例

public class Test {
    public static void main(String[] args) throws InterruptedException {
        //创建一个StopWatch对象
        StopWatch stopWatch=new StopWatch();
        //开始计时
        stopWatch.start();
        //睡眠
        Thread.sleep(1000);
        //结束计时
        stopWatch.stop();
        //打印耗时总时长
        System.out.println("耗时:"+stopWatch.getTotalTimeMillis()+"毫秒");
        //获取总耗时单位是秒
        System.out.println("总耗时:"+stopWatch.getTotalTimeSeconds()+"秒");
    }
}

耗时:986毫秒
总耗时:0.9865676秒

多个任务示例

public class Test {
    public static void main(String[] args) throws InterruptedException {
  		//创建一个StopWatch对象
        StopWatch stopWatch=new StopWatch();
        //开始计时
        stopWatch.start("吃饭");
        //睡眠
        Thread.sleep(1000);
        //结束计时
        stopWatch.stop();
        //打印耗时时长单位毫秒
        System.out.println("吃饭耗时:"+stopWatch.getTotalTimeMillis()+"毫秒");
        //开始计时
        stopWatch.start("睡觉");
        //睡眠
        Thread.sleep(2000);
        //结束计时
        stopWatch.stop();
        //打印耗时时长单位毫秒
        System.out.println("睡觉耗时:"+stopWatch.getTotalTimeMillis()+"毫秒");
        //打印两个任务各占多少时长
        System.out.println(stopWatch.prettyPrint());
        //获取总耗时单位是秒
        System.out.println("总耗时:"+stopWatch.getTotalTimeSeconds()+"秒");
    }
}

在这里插入图片描述

操作十分简单,一学就会,难道你还学不会?

  • 先 new 一个StopWatch 对象
  • 再 start 开始计时
  • 然后 stop 停止计时
  • 通过 stopWatch.getTotalTimeMillis() 得出单个任务耗时
  • 最后通过stopWatch.getTotalTimeSeconds() 获取总耗时

StopWatch还有一些其他的方法可以使用

prettyPrint:用自带格式输出所有任务信息。
getTaskInfo获取所有任务的信息,即各个任务的名称和耗时。(如果想自定义输出一些内容,或者格式,可以从这里获取所有任务的信息)
getTotalTimeMillis获取任务总耗时(毫秒)。
getTotalTimeSeconds获取任务总耗时(秒)。
getTaskCount获取任务总数。
getLastTaskName获取最后一个任务的名称
getLastTasktimeMillis获取最后一个任务的耗时(毫秒)。
getLastTaskInfo获取最后一个任务的信息,即任务的名称和耗时。


如果对你有所帮助,感谢点赞支持,谢谢

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐