转自:

​http://www.java265.com/JavaJingYan/202204/16502899232926.html​

数组:

     数组(Array)是有序的元素序列。 若将有限个类型相同的变量的集合命名,那么这个名称为数组名。组成数组的各个变量称为数组的分量,也称为数组的元素,有时也称为下标变量。用于区分数组的各个元素的数字编号称为下标。数组是在程序设计中,为了处理方便, 把具有相同类型的若干元素按有序的形式组织起来的一种形式。 这些有序排列的同类数据元素的集合称为数组

下文笔者讲述将两个数组合并的方法分享,如下所示:

数组合并是我们日常经常遇见的需求,下文笔者将一一道来,如下所示

方式一、apache-commons

使用apache-commons中的ArrayUtils.addAll(Object[], Object[])

String[] both = (String[]) ArrayUtils.addAll(first, second);
static String[] concat(String[] first, String[] second) {}
static <T> T[] concat(T[] first, T[] second) {}
如果jdk不支持泛型,将T换成String

方式二、System.arraycopy()

static String[] concat(String[] a, String[] b) {
String[] c= new String[a.length+b.length];

System.arraycopy(a, 0, c, 0, a.length);
System.arraycopy(b, 0, c, a.length, b.length);

return c;
}

方式三、Arrays.copyOf()

在java6中,有一个方法Arrays.copyOf(),是一个泛型函数。我们可以利用它,写出更通用的合并方法

public static <T> T[] concat(T[] first, T[] second) {
T[] result = Arrays.copyOf(first, first.length + second.length);
System.arraycopy(second, 0, result, first.length, second.length);
return result;
}

public static <T> T[] concatAll(T[] first, T[]... rest) {
int totalLength = first.length;
for (T[] array : rest) {
totalLength += array.length;
}

T[] result = Arrays.copyOf(first, totalLength);
int offset = first.length;

for (T[] array : rest) {
System.arraycopy(array, 0, result, offset, array.length);
offset += array.length;
}

return result;
}

String[] both = concat(first, second);
String[] more = concat(first, second, third, fourth);

方式四、Array.newInstance

private static <T> T[] concat(T[] a, T[] b) {
final int alen = a.length;
final int blen = b.length;

if (alen == 0) {
return b;
}
if (blen == 0) {
return a;
}

final T[] result = (T[]) java.lang.reflect.Array.
newInstance(a.getClass().getComponentType(), alen + blen);
System.arraycopy(a, 0, result, 0, alen);
System.arraycopy(b, 0, result, alen, blen);

return result;
}