Java如何将两个数组合并为一个数组呢?

java-教程王 Java经验 发布时间:2022-04-18 21:51:02 阅读数:6238 1
下文笔者讲述将两个数组合并的方法分享,如下所示:
数组合并是我们日常经常遇见的需求,下文笔者将一一道来,如下所示

方式一、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;
      } 
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202204/16502899232926.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者