一叉跛、源碼
- Object src:源數(shù)組袜瞬。
- int srcPos:源數(shù)組的起始位置逢并。
- Object dest:目標(biāo)數(shù)組采记。
- int destPos:目標(biāo)數(shù)組的起始位置劣坊。
- int length:要 copy 的數(shù)組的長(zhǎng)度。
二矫夯、用法示例
將源數(shù)組 srcBytes[] 從 0 位開(kāi)始 copy 到目標(biāo)數(shù)組 destBytes[] 中鸽疾,在目標(biāo)數(shù)組的第 0 位開(kāi)始放置,共 copy 4 位训貌。
public static void main(String[] args) {
byte[] srcBytes = new byte[]{2, 4, 6, 8, 1, 3, 5, 0, 9, 7};
byte[] destBytes = new byte[5];
System.arraycopy(srcBytes, 0, destBytes, 0, 4);
for (int i = 0; i < destBytes.length; i++) {
System.out.println(destBytes[i]);
}
}
輸出:
2
4
6
8
0