Java 中提供的System.currentTimeMillis() 方法用於取得目前的電腦時間,時間的表達格式為目前電腦時間和GMT 時間(格林威治時間)1970年1月1號0時0分0秒所差的毫秒數。
System.currentTimeMillis() 方法的傳回類型為 long ,表示毫秒為單位的目前時間。
在開發過程中,通常很多人都習慣使用 new Date() 來取得目前時間。 new Date() 所做的其實就是呼叫了 System.currentTimeMillis()方法。如果只是需要或毫秒數,那麼完全可以用 System.currentTimeMillis() 去代替 new Date(),效率上會高一點。
【範例】計算 String 類型與 StringBuilder 類型拼接字串的耗時情況。
/** * Java使用System.currentTimeMillis()方法计算程序运行时间 * @author pan_junbiao **/ public class CurrentTimeTest { /** * 使用String类型拼接字符串耗时 */ public static void testString() { String s = "Hello"; String s1 = "World"; long start = System.currentTimeMillis(); for(int i=0; i<10000; i++) { s+=s1; } long end = System.currentTimeMillis(); long runTime = (end - start); System.out.println("使用String类型拼接字符串耗时:" + runTime + "毫秒"); } /** * 使用StringBuilder类型拼接字符串耗时 */ public static void testStringBuilder() { StringBuilder s = new StringBuilder("Hello"); String s1 = "World"; long start = System.currentTimeMillis(); for(int i=0; i<10000; i++) { s.append(s1); } long end = System.currentTimeMillis(); long runTime = (end - start); System.out.println("使用StringBuilder类型拼接字符串耗时:" + runTime + "毫秒"); } public static void main(String[] args) { testString(); testStringBuilder(); } }
運行結果:
# 知識點補充:
從上圖的運行結果可以看出,在拼接字串過程中,使用StringBuilder 對象,而不使用String 物件。這是因為 String 是不可變的對象,在每一次改變字串時都會建立一個新的 String 物件;而 StringBuilder 則是可變的字元序列,類似於 String 的字串緩衝區。所以,在字串經常修改的地方使用 StringBuilder ,其效率將高於 String。
在這方面運行速度快慢為:StringBuilder > StringBuffer > String。
線程安全上,StringBuilder 是線程不安全的,而 StringBuffer 是線程安全的。
以上是Java中如何使用System.currentTimeMillis()方法計算程式運行時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!