1. 程式人生 > >通過代碼計算一段程序運行的時間

通過代碼計算一段程序運行的時間

mage ati str http color stat oid div style

 1 public class T1 {
 2     public static void main(String[] args) {
 3         long start=System.currentTimeMillis();
 4         long n=0;
 5         while(n<1000000000){
 6             n++;
 7         }
 8         System.out.print("運行時間為:");
 9         long end=System.currentTimeMillis();
10         System.out.println(end-start);
11 } 12 }

結果為:

技術分享圖片

通過代碼計算一段程序運行的時間