您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用StopWatch優雅替代currentTimeMillis計算程序執行耗時,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
有時需要記錄程序執行時間,最簡單就是打印當前時間與執行完時間的差值,缺點是:
執行大量測試的話就很麻煩
不直觀
如果想對執行的時間做進一步控制,則需要在程序中很多地方修改
于是 Spring提供了一個StopWatch類可以做類似任務執行時間控制,即封裝了一個對開始時間,結束時間記錄工具
統計輸出總耗時
import org.springframework.util.StopWatch; public class SpringStopWatchExample { public static void main (String[] args) throws InterruptedException { StopWatch sw = new StopWatch(); sw.start(); //long task simulation Thread.sleep(1000); sw.stop(); System.out.println(sw.getTotalTimeMillis()); } }
public class SpringStopWatchExample2 { public static void main (String[] args) throws InterruptedException { StopWatch sw = new StopWatch(); sw.start("A");//setting a task name //long task simulation Thread.sleep(1000); sw.stop(); System.out.println(sw.getLastTaskTimeMillis()); } }
import org.springframework.util.StopWatch; public class SpringStopWatchExample3 { public static void main (String[] args) throws InterruptedException { StopWatch sw = new StopWatch(); sw.start("A"); Thread.sleep(500); sw.stop(); sw.start("B"); Thread.sleep(300); sw.stop(); sw.start("C"); Thread.sleep(200); sw.stop(); System.out.println(sw.prettyPrint()); } }
@Override public long nextSeq(String name) { StopWatch watch = new StopWatch(); watch.start("單序列獲取總消耗"); long sequence = generator.generateId(name); watch.stop(); logger.info(watch.prettyPrint()); return sequence; }
getTotalTimeSeconds() 獲取總耗時秒,同時也有獲取毫秒的方法
prettyPrint() 優雅的格式打印結果,表格形式
shortSummary() 返回簡短的總耗時描述
getTaskCount() 返回統計時間任務的數量
getLastTaskInfo().getTaskName() 返回最后一個任務TaskInfo對象的名稱
關于“如何使用StopWatch優雅替代currentTimeMillis計算程序執行耗時”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。