System類 exit:退出當前程式。 arraycopy:複製數組元素,比較適合底層調用,一般使用Arrays.copyOF完成複製數組。 currentTimeMillens:返回當前時間距離 1970-1-1 的毫秒數。 gc:運行垃圾回收機制 System.gc(); public cla ...
System類
- exit:退出當前程式。
- arraycopy:複製數組元素,比較適合底層調用,一般使用Arrays.copyOF完成複製數組。
- currentTimeMillens:返回當前時間距離 1970-1-1 的毫秒數。
- gc:運行垃圾回收機制 System.gc();
public class System_ {
public static void main(String[] args) {
// //exit: 退出當前程式
// System.out.println("ok1");
// //1. exit(0) 表示程式正常退出
// //2. 0 表示一個狀態,正常狀態
// System.exit(0);
// System.out.println("ok2");
//arraycopy : 複製數組元素,比較適合底層調用
//一般使用Arrays.copyOf 完成複製數組
int[] src = {1,2,3};
int[] dest = new int[3];// dest 當前是 {0,0,0}
//1. 主要是搞清楚這五個參數的含義
//2.
// 原數組
// * @param src the source array.
// srcPos:從原數組的哪個索引位置開始拷貝
// * @param srcPos starting position in the source array.
// dest:目標數組,即把原數組的數組拷貝到這個數組
// * @param dest the destination array.
// destPos:把原數組的數據拷貝到目標數組的哪個索引開始
// * @param destPos starting position in the destination data.
// length:從原數組拷貝多少數據到目標數組
// * @param length the number of array elements to be copie.d
System.arraycopy(src,0,dest,1,2);
System.out.println(Arrays.toString(dest));//[0, 1, 2]
//currentTimeMillis:返回當前時間距離1970年01時01分的毫秒數
System.out.println(System.currentTimeMillis());
}
}