Javaで配列をコピーする方法

Javaで配列をコピーする方法

以下で説明する方法は、1次元配列にのみ適用できます。 Javaで配列をコピーするさまざまな方法について説明する前に、配列をコピーしない方法を示します。

Javaで配列をコピーしない方法

Javaの配列はオブジェクトです。 それらを変数として処理しようとすると…まあ、できます(!)がwhat you are really copying is the reference!です。 以下の例は、このステートメントを説明しています。

HowNOTtoCopyAnArray.java

package com.techfou.copyarray;

import java.util.Arrays;

public class HowNOTtoCopyAnArray {

    public static void main(String[] args){

        int[] x = {1, 2, 3, 4, 5};
        int[] y = x; //don't copy array like this!

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y)+"\n");

        x[1] = 22; // y[1] will display 22! same reference

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y)+"\n");

        y[4] = 55; // x[4] will display 55!

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y));

    }

}

出力:

[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5]

[1, 22, 3, 4, 5]
[1, 22, 3, 4, 5]

[1, 22, 3, 4, 55]
[1, 22, 3, 4, 55]

1. Object.clone()

ArraysObjectクラスからメソッドを継承し、cloneはその1つです。 そのまま配列をコピーする必要がある場合、これが使用すべき方法です。

CloneArray.java

package com.techfou.copyarray;

import java.util.Arrays;

public class CloneArray {

    public static void main(String[] args){

        int[] x = {1, 2, 3, 4, 5};
        int[] y = x.clone();

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y)+"\n");

        x[1] = 22;

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y)+"\n");

        y[4] = 55;

        System.out.println(Arrays.toString(x));
        System.out.println(Arrays.toString(y));

    }

}

出力:

[1, 2, 3, 4, 5]
[1, 2, 3, 4, 5]

[1, 22, 3, 4, 5]
[1, 2, 3, 4, 5]

[1, 22, 3, 4, 5]
[1, 2, 3, 4, 55]

2. Arrays.copyOf()

Arraysクラスには、配列を完全にまたは部分的にコピーする2つのメソッドがあります。 これがcopyOf()メソッドの例です。

ArraysCopyOfMethod.java

package com.example.copyarray;

import java.util.Arrays;

public class ArraysCopyOfMethod {

    public static void main(String[] args){

        String[] x = {"one", "two", "three", "four", "five"};
        String[] y = Arrays.copyOf(x, x.length);
        String[] z = Arrays.copyOf(x, 3); //will copy the 3 first elements of array x

        System.out.println("Array x: " + Arrays.toString(x));
        System.out.println("Array y: " + Arrays.toString(y));
        System.out.println("Array z: " + Arrays.toString(z));

    }

}

出力:

Array x: [one, two, three, four, five]
Array y: [one, two, three, four, five]
Array z: [one, two, three]

3. Arrays.copyOfRange()

そして、これはcopyOfRange()メソッドの例です。

ArraysCopyOfRangeMethod.java

package com.example.copyarray;

import java.util.Arrays;

public class ArraysCopyOfRangeMethod {

    public static void main(String[] args){
        String[] x = {"one", "two", "three", "four", "five"};
        String[] y = Arrays.copyOfRange(x, 0, x.length); //full copy of the array
        String[] z = Arrays.copyOfRange(x, x.length-2, x.length); //copy only the last 2 elements


        System.out.println("Array x: " + Arrays.toString(x));
        System.out.println("Array y: " + Arrays.toString(y));
        System.out.println("Array z: " + Arrays.toString(z));
    }
}

出力:

Array x: [one, two, three, four, five]
Array y: [one, two, three, four, five]
Array z: [four, five]

4. System.arraycopy()

System.arraycopy()を使用すると、コピーするソース配列の要素の範囲、
、および宛先の位置を制御できます。

System.arraycopy署名(JavaDoc)を確認します。

arraycopy(Object src, int srcPos, Object dest, int destPos, int length)

SystemArrayCopy.java

package com.example.copyarray;

import java.util.Arrays;

public class SystemArrayCopy {

    public static void main(String[] args){

        String[] x = {"one", "two", "three", "four", "five"};
        String[] y = new String[2];
        System.arraycopy(x, 3, y, 0, 2);

        System.out.println("Array x: " + Arrays.toString(x));
        System.out.println("Array y: " + Arrays.toString(y) + "\n");

        Object[] z = new Object[5];
        System.arraycopy(x, 0, z, 0, 5);
        System.out.println("Array z: " + Arrays.toString(z)+"\n");

        Integer[] w = {3, 4, 5};
        System.out.println("Array w: " + Arrays.toString(w));

        //copy from the second value (1) of array w to z and place in the fourth place (3) the 2 values
        System.arraycopy(w, 1, z, 3, 2);
        System.out.println("Array z: " + Arrays.toString(z));

    }
}

出力:

Array x: [one, two, three, four, five]
Array y: [four, five]

Array z: [one, two, three, four, five]

Array w: [3, 4, 5]
Array z: [one, two, three, 4, 5]

Note
スローされた例外を処理するために、コードをtrycatchで囲むことを忘れないでください