在Java中,如何把兩個String[]合併為一個 與 list 合併有異曲同工之妙
阿新 • • 發佈:2018-12-05
在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()
[java] view plain copy- 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
- 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;
- }
如果要合併多個,可以這樣寫:
[java] view plain copy- 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;
- }