Java Array Concatenate concat(T[] first, T[] second)

Here you can find the source of concat(T[] first, T[] second)

Description

concat

License

Open Source License

Declaration

public static <T> T[] concat(T[] first, T[] second) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.Arrays;

public class Main {
    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;
    }/*from   ww  w.  ja va 2s .  c  o  m*/

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

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

Related

  1. concat(T[] array1, T[] array2)
  2. concat(T[] first, @SuppressWarnings("unchecked") T... second)
  3. concat(T[] first, T[] second)
  4. concat(T[] first, T[] second)
  5. concat(T[] first, T[] second)
  6. concat(T[] first, T[]... rest)
  7. concat(T[] head, T... tail)
  8. concat(T[] left, T[] right)
  9. concat(T[] objects)