有四种方法可以合并两个 java 数组:手动合并:创建新数组并复制每个数组的元素。使用 system.arraycopy() 方法:减少创建新数组的开销。使用 apache commons lang 库的 arrayutils.addall() 方法。使用 guava 库的 collections2.concat() 方法。
如何用 Java 合并两个数组?
合并两个数组是 Java 中一项常见的操作,可以通过多种方法实现。
1. 手动合并:
这是最基本的方法,涉及以下步骤:
- 创建一个新数组,长度为两个原始数组长度之和。
- 使用循环将每个数组的元素复制到新数组中。
- 返回合并后的数组。
public static int[] mergeArrays(int[] arr1, int[] arr2) { int[] mergedArr = new int[arr1.length + arr2.length]; for (int i = 0; i <p><strong>2. 使用 System.arraycopy() 方法:</strong></p><p>此方法直接复制数组的一部分,减少了创建新数组的开销。</p><pre class="brush:php;toolbar:false">public static int[] mergeArrays(int[] arr1, int[] arr2) { int[] mergedArr = new int[arr1.length + arr2.length]; System.arraycopy(arr1, 0, mergedArr, 0, arr1.length); System.arraycopy(arr2, 0, mergedArr, arr1.length, arr2.length); return mergedArr; }
登录后复制
3. 使用 Apache Commons Lang 库:
此库提供了 ArrayUtils 类,其中包含一个 addAll() 方法,用于合并两个数组。
import org.<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15972.html" target="_blank">apache</a>.commons.lang3.ArrayUtils; public static int[] mergeArrays(int[] arr1, int[] arr2) { return ArrayUtils.addAll(arr1, arr2); }
登录后复制
4. 使用 Guava 库:
此库提供了 Collections2 类,其中包含一个 concat() 方法,用于合并两个数组。
import com.google.common.collect.Collections2; public static int[] mergeArrays(int[] arr1, int[] arr2) { return Collections2.concat(Arrays.asList(arr1), Arrays.asList(arr2)); }
登录后复制
以上就是java怎么合并两个数组的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:周斌,转转请注明出处:https://www.dingdanghao.com/article/611862.html