System.arraycopy使用方法:

System.copy使用方法:
 java

int[] ids = { 1, 2, 3, 4, 5 };  
    System.out.println(Arrays.toString(ids)); // [1, 2, 3, 4, 5]  
    // 測試自我複製  
    // 把從索引0開始的2個數字複製到索引爲3的位置上  
    System.arraycopy(ids, 0, ids, 3, 2);  
    System.out.println(Arrays.toString(ids)); // [1, 2, 3, 1, 2]
相關文章
相關標籤/搜索