30-System類

呆头尖瓜發表於2024-07-05

System類

  • System系統類,主要用於獲取系統的屬性資料和其他操作,構造方法私有的(不需要建立物件,方法也是靜態的)

常用方法

  • arraycopy(); 複製陣列
  • currentTimeMillis(); 獲取當前系統時間,返回的是毫秒值
  • gc(); 建議JVM趕快啟動垃圾回收期回收垃圾
  • exit(int status); 推出JVM,引數是0表示正常退出,非0表示異常退出
        //arraycopy
        //src:源陣列 srcPos:從那個位置開始複製  dest:目標陣列  destPos:目標陣列位置  length:長度
        int[] arr = {20,18,15,8,35,26,45,90};
        int[] dest = new int[8];
        System.arraycopy(arr,4,dest,4,4);
        for (int i : dest) {
            System.out.println(i);
        }
        //currentTimeMillis();
        System.out.println(System.currentTimeMillis());

        //gc();
        System.gc();
        
        //exit();
        System.exit(0);

相關文章