Java实现把两个数组合并为一个的方法总结
本文实例讲述了java实现把两个数组合并为一个的方法。分享给大家供大家参考,具体如下:
在java中,如何把两个string[]合并为一个?
看起来是一个很简单的问题。但是如何才能把代码写得高效简洁,却还是值得思考的。这里介绍四种方法,请参考选用。
一、apache-commons
这是最简单的办法。在apache-commons中,有一个arrayutils.addall(object[], object[])
方法,可以让我们一行搞定:
string[] both = (string[]) arrayutils.addall(first, second);
其它的都需要自己调用jdk中提供的方法,包装一下。
为了方便,我将定义一个工具方法concat,可以把两个数组合并在一起:
static string[] concat(string[] first, string[] second) {}
为了通用,在可能的情况下,我将使用泛型来定义,这样不仅string[]可以使用,其它类型的数组也可以使用:
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; }
使用如下:
string[] both = concat(first, second);
三、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
还可以使用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; }
更多关于java相关内容感兴趣的读者可查看本站专题:《java数组操作技巧总结》、《java字符与字符串操作技巧总结》、《java数学运算技巧总结》、《java数据结构与算法教程》及《java操作dom节点技巧总结》
希望本文所述对大家java程序设计有所帮助。