本文主要是介绍Java优雅统计耗时【工具类】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
任务耗时如何优雅的打印,看完本文你就明白了!~
import cn.hutool.core.date.StopWatch;
import cn.hutool.core.lang.Console;/*** 优雅打印出任务耗时*/
public class Main {public static void main(String[] args) throws Exception{StopWatch stopWatch = new StopWatch("任务名称");// 任务1stopWatch.start("任务一");Thread.sleep(1000);stopWatch.stop();// 任务2stopWatch.start("任务二");Thread.sleep(2000);stopWatch.stop();// 打印出耗时Console.log(stopWatch.prettyPrint());}
}
控制台打印结果:
这篇关于Java优雅统计耗时【工具类】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!