要怎摸寫才會知道執行時間,因為我要跑回圈100次、500次、1000,要在程式最後跑出跑幾秒之類的?
2006-10-18 12:53:58 · 3 個解答 · 發問者 YH 1 in 電腦與網際網路 ➔ 程式設計
我的想法如下,1. 記錄開始時間2. 利用廻圈讓程式印出 1000 個亂數3. 記錄終止時間4. 印出廻圈執行時間請參考我的做法,public class A { public static void main(String[] args) { long start = System.currentTimeMillis(); for (int i = 0; i < 100; i++) { System.out.println("" + Math.random() * 10000); } long end = System.currentTimeMillis(); long duration = end - start; System.out.println(duration + "毫秒"); }}
2006-10-31 05:37:33 · answer #1 · answered by ? 7 · 0⤊ 0⤋
http://tw.knowledge.yahoo.com/question/?qid=1306030914863
2006-10-18 21:48:29 · answer #2 · answered by 吉他 5 · 0⤊ 0⤋
用System.currentTimeMillis();來計時
2006-10-18 20:38:53 · answer #3 · answered by ㄚ旺 5 · 0⤊ 0⤋