systemarraycopy五個參數(shù)的含義?
System提供了一個native 靜態(tài)方法arraycopy(),我們可以使用它來實現(xiàn)數(shù)組之間的復制。其函數(shù)原型是: public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) src:源數(shù)組; srcPos:源數(shù)組要復制的起始位置; dest:目的數(shù)組; destPos:目的數(shù)組放置的起始位置; length:復制的長度。 注意:src and dest都必須是同類型或者可以進行轉(zhuǎn)換類型的數(shù)組
代碼示例:
import java.util.Arrays;
/**
* 老紫竹JAVA提高教程 - System.arraycopy方法的使用。<br>
* <br>
* 從指定源數(shù)組中復制一個數(shù)組,復制從指定的位置開始,<br>
* 到目標數(shù)組的指定位置結(jié)束
*
* @author 老紫竹的家(java2000.net,laozizhu.com)
*
*/
public class LessionSystemArraycopy {
public static void main(String[] args) {
// 此方位為native方法。
// public static native void arraycopy(
// Object src, int srcPos, Object dest,
// int destPos, int length);
// 初始化
int[] ids = { 1, 2, 3, 4, 5 };
System.out.println(Arrays.toString(ids)); // [1, 2, 3, 4, 5]
// 測試自我復制
// 把從索引0開始的2個數(shù)字復制到索引為3的位置上
System.arraycopy(ids, 0, ids, 3, 2);
System.out.println(Arrays.toString(ids)); // [1, 2, 3, 1, 2]
// 測試復制到別的數(shù)組上
// 將數(shù)據(jù)的索引1開始的3個數(shù)據(jù)復制到目標的索引為0的位置上
int[] ids2 = new int[6];
System.arraycopy(ids, 1, ids2, 0, 3);
System.out.println(Arrays.toString(ids2)); // [2, 3, 1, 0, 0, 0]
// 此功能要求
// 源的起始位置+長度不能超過末尾
// 目標起始位置+長度不能超過末尾
// 且所有的參數(shù)不能為負數(shù)
try {
System.arraycopy(ids, 0, ids2, 0, ids.length + 1);
} catch (IndexOutOfBoundsException ex) {
// 發(fā)生越界異常,數(shù)據(jù)不會改變
System.out.println("拷貝發(fā)生異常:數(shù)據(jù)越界。");
}
System.out.println(Arrays.toString(ids2)); // [2, 3, 1, 0, 0, 0]
// 如果是類型轉(zhuǎn)換問題
Object[] o1 = { 1, 2, 3, 4.5, 6.7 };
Integer[] o2 = new Integer[5];
System.out.println(Arrays.toString(o2)); // [null, null, null, null, null]
try {
System.arraycopy(o1, 0, o2, 0, o1.length);
} catch (ArrayStoreException ex) {
// 發(fā)生存儲轉(zhuǎn)換,部分成功的數(shù)據(jù)會被復制過去
System.out.println("拷貝發(fā)生異常:數(shù)據(jù)轉(zhuǎn)換錯誤,無法存儲。");
}
// 從結(jié)果看,前面3個可以復制的數(shù)據(jù)已經(jīng)被存儲了。剩下的則沒有
System.out.println(Arrays.toString(o2)); // [1, 2, 3, null, null]
}
}