StopWatch任务执行时间监视器.md

前言

StopWath是apache commons lang3包下的一个任务执行时间监视器

主要方法:

start(); //开始计时
split(); //设置split点
getSplitTime(); //获取从start 到 最后一次split的时间
reset(); //重置计时
suspend(); //暂停计时, 直到调用resume()后才恢复计时
resume(); //恢复计时
stop(); //停止计时
getTime(); //统计从start到现在的计时

代码

@Test
public void  xx() throws InterruptedException {
    StopWatch watch = new StopWatch();
    watch.start();

    //统计从start开始经历的时间
    Thread.sleep(1000);
    System.out.println(watch.getTime());

    //统计计时点
    Thread.sleep(1000);
    watch.split();
    System.out.println(watch.getSplitTime());

    //统计计时点
    Thread.sleep(1000);
    watch.split();
    System.out.println(watch.getSplitTime());

    //复位后, 重新计时
    watch.reset();
    watch.start();
    Thread.sleep(1000);
    System.out.println(watch.getTime());

    //暂停 与 恢复
    watch.suspend();
    System.out.println("暂停2秒钟");
    Thread.sleep(2000);

    watch.resume();
    Thread.sleep(1000);
    watch.stop();
    System.out.println(watch.getTime());
}

输出结果:

1000
2000
3001
1000
暂停2秒钟
2000

但是上面的时间处理只支持ms,但是下面的写法时间可以支持多种格式,可以自由选择

@Test
public void  xx() throws InterruptedException {
    Stopwatch stopwatch = Stopwatch.createStarted();
    Thread.sleep(1000);
    System.out.println(stopwatch.stop().elapsed(TimeUnit.MILLISECONDS));
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值