Java中如何把兩個數組合并為一個

來源:互聯網
上載者:User

標籤:

http://freewind.me/blog/20110922/350.html

在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 plaincopyprint?
  1. static String[] concat(String[] a, String[] b) {  
  2.    String[] c= new String[a.length+b.length];  
  3.    System.arraycopy(a, 0, c, 0, a.length);  
  4.    System.arraycopy(b, 0, c, a.length, b.length);  
  5.    return c;  
  6. }  
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(),是一個泛型函數。我們可以利用它,寫出更通用的合并方法:

[java] view plaincopyprint?
  1. public static <T> T[] concat(T[] first, T[] second) {  
  2.   T[] result = Arrays.copyOf(first, first.length + second.length);  
  3.   System.arraycopy(second, 0, result, first.length, second.length);  
  4.   return result;  
  5. }           
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 plaincopyprint?
  1. public static <T> T[] concatAll(T[] first, T[]... rest) {  
  2.   int totalLength = first.length;  
  3.   for (T[] array : rest) {  
  4.     totalLength += array.length;  
  5.   }  
  6.   T[] result = Arrays.copyOf(first, totalLength);  
  7.   int offset = first.length;  
  8.   for (T[] array : rest) {  
  9.     System.arraycopy(array, 0, result, offset, array.length);  
  10.     offset += array.length;  
  11.   }  
  12.   return result;  
  13. }  
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來產生數組:

[java] view plaincopyprint?
  1. private static <T> T[] concat(T[] a, T[] b) {  
  2.     final int alen = a.length;  
  3.     final int blen = b.length;  
  4.     if (alen == 0) {  
  5.         return b;  
  6.     }  
  7.     if (blen == 0) {  
  8.         return a;  
  9.     }  
  10.     final T[] result = (T[]) java.lang.reflect.Array.  
  11.             newInstance(a.getClass().getComponentType(), alen + blen);  
  12.     System.arraycopy(a, 0, result, 0, alen);  
  13.     System.arraycopy(b, 0, result, alen, blen);  
  14.     return result;  
  15. }  

Java中如何把兩個數組合并為一個

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.