Java One Array数据到另一个Array

时间:2011-05-20 19:18:30

标签: java arrays

基本上我需要例如在位置0..9的array1包含来自posinion 20..29的另一个数组的项目。我该怎么做呢?我尝试使用for循环,但这样我只能从两个数组中的相同位置获取数据。

1 个答案:

答案 0 :(得分:7)

// copy indices 20-29 from array2 to indices 0-9 in array1
System.arraycopy(array2, 20, array1, 0, 10);