Java - 두 배열을 비교하는 방법

자바에서 두개의 배열이 같은지, 다른지 비교할 때 직접 비교하는 코드를 구현할 수도 있지만, Arrays 라이브러리를 이용하면 간단하게 구현할 수 있습니다. 자세히 알아보겠습니다.

1. Arrays.equals()로 일차원 배열 비교

Arrays.equals()는 인자로 전달된 두개의 일차원 배열을 비교하여 같은지 다른지 boolean으로 결과를 리턴합니다. 참고로, 다차원 배열은 올바르게 동작하지 않습니다.

import java.util.Arrays;

public class Example1 {

    public static void main(String[] args) {

        int[] first = { 1, 2, 3 };
        int[] second = { 1, 2, 3 };
        int[] third = { 1, 2, 3, 4 };

        System.out.println("first is equal to second ? "
                + Arrays.equals(first, second));

        System.out.println("first is equal to third ? "
                + Arrays.equals(first, third));

        System.out.println("first is equal to null ? "
                + Arrays.equals(first, null));
    }
}

Output:

first is equal to second ? true
first is equal to third ? false
first is equal to null ? false

2. Arrays.deepEquals()으로 다차원 배열 비교

Arrays.deepEquals()를 사용하면 두개의 다차원 배열이 같은지 다른지 비교할 수 있습니다. 결과는 boolean으로 리턴됩니다.

import java.util.Arrays;

public class Example2 {

    public static void main(String[] args) {

        int[][] first = { {1, 2, 3}, {4, 5, 6} };
        int[][] second = { {1, 2, 3}, {4, 5, 6} };
        int[][] third = { {4, 5, 6}, {1, 2, 3} };

        System.out.println("first is equal to second ? "
                + Arrays.deepEquals(first, second));

        System.out.println("first is equal to third ? "
                + Arrays.deepEquals(first, third));

        System.out.println("first is equal to null ? "
                + Arrays.deepEquals(first, null));
    }
}

Output:

first is equal to second ? true
first is equal to third ? false
first is equal to null ? false

2.1 다차원 배열 비교 시, equals()와 deepEquals()의 결과 차이

같은 값을 갖고 있는 두개의 다차원 배열을 equals()deepEquals()로 결과를 비교해보면 equals()는 false를 리턴하고 deepEquals()는 true를 리턴합니다. 즉, deepEquals()를 사용하여 다차원 배열을 비교해야 합니다.

import java.util.Arrays;

public class Example3 {

    public static void main(String[] args) {

        int[][] first = { {1, 2, 3}, {4, 5, 6} };
        int[][] second = { {1, 2, 3}, {4, 5, 6} };

        System.out.println("equals ? "
                + Arrays.equals(first, second));

        System.out.println("deepEquals ? "
                + Arrays.deepEquals(first, second));
    }
}

Output:

equals ? false
deepEquals ? true

3. for 문으로 일차원 배열 비교

Arrays 라이브러리를 사용하지 않고, 아래와 같이 직접 두개의 배열이 같은지 비교하는 코드를 구현할 수 있습니다.

public class Example {

    public static boolean isEqual(int[] first, int[] second) {
        if (first == second) {
            return true;
        }
        if (first == null || second == null) {
            return false;
        }
        if (first.length != second.length) {
            return false;
        }

        for (int i = 0; i < first.length; i++) {
            if (first[i] != second[i]) {
                return false;
            }
        }
        return true;
    }

    public static void main(String[] args) {

        int[] first = { 1, 2, 3 };
        int[] second = { 1, 2, 3 };
        int[] third = { 1, 2, 3, 4 };

        System.out.println("first is equal to second ? " + isEqual(first, second));
        System.out.println("first is equal to third ? " + isEqual(first, third));
    }
}

Output:

first is equal to second ? true
first is equal to third ? false
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha