在Java中,可以使用`System.arraycopy()`方法将两个数组进行拼接。示例代码如下:```javapublic cl
在Java中,可以使用`System.arraycopy()`方法将两个数组进行拼接。
示例代码如下:
```java
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`。
在代码中,我们首先定义了两个数组`array1`和`array2`,然后创建了一个新数组`result`,长度为两个数组长度之和。接下来,使用`System.arraycopy()`方法将`array1`和`array2`分别复制到`result`数组中,然后通过循环输出结果。
--结束END--
本文标题: Java中怎么把两个数组拼接
本文链接: https://lsjlt.com/news/419164.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0