System.arraycopy() 方法用於將一個陣列中的部分元素複製到另一個陣列中的指定位置
System.arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
src: 源陣列
srcPos:源陣列中要複製的元素的索引起始位置
dest:目標陣列
destPos:目標陣列中要複製到的元素的索引起始位置
length:要複製的元素數量
案例
@Slf4j
public class ArrayDemo {
public static void main(String[] args) {
Integer[] src = {1, 3, 5, 7, 9};
Integer[] dest = {2, 4, 6, 8, 10, 12};
// 從源陣列 src 索引為 1 的位置開始,將 src 中的 3 個元素複製到目標陣列 dest 索引為 2 的位置
System.arraycopy(src, 1, dest, 2, 3);
log.info("複製後源陣列 src: {}", JSONObject.toJSON(src));
log.info("複製後目標陣列 dest: {}", JSONObject.toJSON(dest));
}
}