Java System類
阿新 • • 發佈:2017-05-20
system類 per span mil array static ack 程序運行時間 pac
1 package demo04; 2 3 //因為構造方法被private修飾,System類不能創建對象,但是可以通過類名訪問其靜態方法 4 public class SystemDemo { 5 public static void main(String[] args) { 6 //static long currentTimeMillis() 返回以毫秒為單位的當前時間 7 8 //獲取程序運行時間 end-start 9 long start = System.currentTimeMillis();10 for (int i = 0; i < 10000; i++) { 11 System.out.println(i); 12 } 13 long end = System.currentTimeMillis(); 14 System.out.println(end-start); 15 16 //static void gc() 運行垃圾回收器 17 System.gc(); 18 19 //static Properties getProperties() 確定當前的系統屬性20 System.out.println(System.getProperties()); 21 22 //static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) 23 //(源數組,起始位置,目標數組,目標數組起始位置,復制數組元素個數)從指定源數組中復制一個數組,復制從指定的位置開始,到目標數組的指定位置結束 24 int[] src = {1,2,3,4,5,6}; 25 int[] dest = {7,8,9};26 System.arraycopy(src, 1, dest, 0, 2); 27 //[2,3,9] 28 for (int i = 0; i < dest.length; i++) { 29 System.out.println(dest[i]); 30 } 31 32 //static void exit(int status) 終止當前正在運行的 Java 虛擬機 33 System.exit(0); 34 System.out.println("這裏不會執行"); 35 } 36 }
Java System類