java中的arraycopy怎么使用

小億
95
2023-12-21 20:10:20

在Java中,可以使用System.arraycopy()方法來(lái)復(fù)制數(shù)組。該方法的語(yǔ)法如下:

public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)

參數(shù)說(shuō)明:

  • src:源數(shù)組
  • srcPos:源數(shù)組中復(fù)制的起始位置
  • dest:目標(biāo)數(shù)組
  • destPos:目標(biāo)數(shù)組中復(fù)制的起始位置
  • length:復(fù)制的長(zhǎng)度

示例代碼如下:

public class ArrayCopyExample {
    public static void main(String[] args) {
        int[] srcArray = {1, 2, 3, 4, 5};
        int[] destArray = new int[5];
        
        // 將srcArray數(shù)組的元素復(fù)制到destArray數(shù)組
        System.arraycopy(srcArray, 0, destArray, 0, srcArray.length);
        
        // 輸出目標(biāo)數(shù)組的元素
        for (int i = 0; i < destArray.length; i++) {
            System.out.println(destArray[i]);
        }
    }
}

以上代碼將srcArray數(shù)組的元素復(fù)制到destArray數(shù)組中,并輸出目標(biāo)數(shù)組的元素。輸出結(jié)果為:

1
2
3
4
5

0