Java中怎么把两个数组拼接

51次阅读
没有评论

共计 578 个字符,预计需要花费 2 分钟才能阅读完成。

在 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 数组中,然后通过循环输出结果。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计578字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)