spring提供了一個StopWatch類能夠作相似任務執行時間計算:

package yt.gk.goodsservice.config;

import org.springframework.util.StopWatch;

public class MainTime {
    public static void main(String[] args) {
        //spring提供了一個StopWatch類能夠作相似任務執行時間計算:
        StopWatch sw = new StopWatch();
        //業務開始時間
        sw.start();

       // 業務操做
        for(int i=0;i<300;i++){
            System.out.println(i);
        }

        //業務結束時間
        sw.stop();

        System.out.println("程序所耗時間爲:"+sw.getTotalTimeMillis());
    }
}

程序執行結果:spring

單位時毫秒msblog

相關文章
相關標籤/搜索