亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java中怎么把兩個數組拼接

小億
147
2023-09-27 00:32:30
欄目: 編程語言

在Java中,可以使用System.arraycopy()方法將兩個數組進行拼接。

示例代碼如下:

public class Main {
public static void main(String[] args) {
// 定義兩個數組
int[] array1 = {1, 2, 3};
int[] array2 = {4, 5, 6};
// 創建一個新數組,長度為兩個數組的長度之和
int[] result = new int[array1.length + array2.length];
// 將array1復制到result中
System.arraycopy(array1, 0, result, 0, array1.length);
// 將array2復制到result中
System.arraycopy(array2, 0, result, array1.length, array2.length);
// 輸出結果
for (int i : result) {
System.out.print(i + " ");
}
}
}

運行上述代碼,輸出結果為:1 2 3 4 5 6

在代碼中,我們首先定義了兩個數組array1array2,然后創建了一個新數組result,長度為兩個數組長度之和。接下來,使用System.arraycopy()方法將array1array2分別復制到result數組中,然后通過循環輸出結果。

0
高陵县| 长宁区| 津南区| 眉山市| 平乡县| 大同市| 屏边| 三亚市| 通化县| 保定市| 福海县| 韶山市| 旌德县| 长宁县| 吕梁市| 巴南区| 成安县| 新泰市| 安宁市| 平遥县| 海林市| 界首市| 龙泉市| 衡阳县| 乡城县| 保山市| 措勤县| 迭部县| 秦安县| 玉门市| 贵定县| 罗田县| 榆中县| 九龙县| 桐柏县| 南昌县| 星座| 襄城县| 白城市| 天津市| 墨竹工卡县|