web-dev-qa-db-ja.com

Javaで2D配列のディープコピーを行うにはどうすればよいですか?

2d boolean配列で.clone()を使用して、これがディープコピーであると考えて少しばかり取得しました。

boolean[][]配列のディープコピーを実行するにはどうすればよいですか?

ループして、一連のSystem.arraycopyを実行する必要がありますか?

42
user189661

はい、2Dブール配列を繰り返しコピーして深層コピーする必要があります。 Java 6.を使用している場合は、Java.util.Arrays#copyOfメソッドも参照してください。

Java 6:の次のコードを提案します。

public static boolean[][] deepCopy(boolean[][] original) {
    if (original == null) {
        return null;
    }

    final boolean[][] result = new boolean[original.length][];
    for (int i = 0; i < original.length; i++) {
        result[i] = Arrays.copyOf(original[i], original[i].length);
        // For Java versions prior to Java 6 use the next:
        // System.arraycopy(original[i], 0, result[i], 0, original[i].length);
    }
    return result;
}
53
Rorick

Java 8では、ラムダを使用して1行で実現できます。

<T> T[][] deepCopy(T[][] matrix) {
    return Java.util.Arrays.stream(matrix).map(el -> el.clone()).toArray($ -> matrix.clone());
}
12
SlavaSt

再帰的な配列のディープコピーを作成することができました。さまざまな次元の長さを持つ多次元配列でもうまく機能するようです。

private static final int[][][] INT_3D_ARRAY = {
        {
                {1}
        },
        {
                {2, 3},
                {4, 5}
        },
        {
                {6, 7, 8},
                {9, 10, 11},
                {12, 13, 14}
        }
};

これがユーティリティメソッドです。

@SuppressWarnings("unchecked")
public static <T> T[] deepCopyOf(T[] array) {

    if (0 >= array.length) return array;

    return (T[]) deepCopyOf(
            array, 
            Array.newInstance(array[0].getClass(), array.length), 
            0);
}

private static Object deepCopyOf(Object array, Object copiedArray, int index) {

    if (index >= Array.getLength(array)) return copiedArray;

    Object element = Array.get(array, index);

    if (element.getClass().isArray()) {

        Array.set(copiedArray, index, deepCopyOf(
                element,
                Array.newInstance(
                        element.getClass().getComponentType(),
                        Array.getLength(element)),
                0));

    } else {

        Array.set(copiedArray, index, element);
    }

    return deepCopyOf(array, copiedArray, ++index);
}

編集:プリミティブ配列で動作するようにコードを更新しました。

9
Karl Bennett

私は配列ユーティリティのファンです。 1次元配列のディープコピーを実行するcopyOfメソッドがあるため、次のようなものが必要です。

//say you have boolean[][] foo;
boolean[][] nv = new boolean[foo.length][foo[0].length];
for (int i = 0; i < nv.length; i++)
     nv[i] = Arrays.copyOf(foo[i], foo[i].length);
8
perimosocordiae

はい、それが唯一の方法です。どちらもJava.util.Arrays commons-langではなく、配列のディープコピーを提供します。

6
Aaron Digulla

Java.lang.reflect.Array を使用した反射型の例を次に示します。これは、より堅牢で、従うのが少し簡単です。このメソッドは任意の配列をコピーし、多次元配列を深くコピーします。

package mcve.util;

import Java.lang.reflect.*;

public final class Tools {
    private Tools() {}
    /**
     * Returns a copy of the specified array object, deeply copying
     * multidimensional arrays. If the specified object is null, the
     * return value is null. Note: if the array object has an element
     * type which is a reference type that is not an array type, the
     * elements themselves are not deep copied. This method only copies
     * array objects.
     *
     * @param  array the array object to deep copy
     * @param  <T>   the type of the array to deep copy
     * @return a copy of the specified array object, deeply copying
     *         multidimensional arrays, or null if the object is null
     * @throws IllegalArgumentException if the specified object is not
     *                                  an array
     */
    public static <T> T deepArrayCopy(T array) {
        if (array == null)
            return null;

        Class<?> arrayType = array.getClass();
        if (!arrayType.isArray())
            throw new IllegalArgumentException(arrayType.toString());

        int length = Array.getLength(array);
        Class<?> componentType = arrayType.getComponentType();

        @SuppressWarnings("unchecked")
        T copy = (T) Array.newInstance(componentType, length);

        if (componentType.isArray()) {
            for (int i = 0; i < length; ++i)
                Array.set(copy, i, deepArrayCopy(Array.get(array, i)));
        } else {
            System.arraycopy(array, 0, copy, 0, length);
        }

        return copy;
    }
}
2
Radiodef