2022
03-16
03-16
Spring计时器stopwatch使用详解
StopWatch是位于org.springframework.util包下的一个工具类,通过它可方便的对程序部分代码进行计时(ms级别),适用于同步单线程代码块。正常情况下,我们如果需要看某段代码的执行耗时,会通过如下的方式进行查看:publicstaticvoidmain(String[]args)throwsInterruptedException{StopWatchTest.test0();//StopWatchTest.test1();}publicstaticvoidtest0()throwsInterruptedException{long...
继续阅读 >