자바에서 두개의 배열이 같은지, 다른지 비교할 때 직접 비교하는 코드를 구현할 수도 있지만, 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
- Java - Unsupported class file major version 61 에러
- Java - String.matches()로 문자열 패턴 확인 및 다양한 예제 소개
- Java - 문자열 공백제거 (trim, replace)
- Java - replace()와 replaceAll()의 차이점
- Java - ArrayList 초기화, 4가지 방법
- Java - 배열 정렬(Sorting) (오름차순, 내림차순)
- Java - 문자열(String)을 비교하는 방법 (==, equals, compare)
- Java - StringBuilder 사용 방법, 예제
- Java - 로그 출력, 파일 저장 방법 (Logger 라이브러리)
- Java IllegalArgumentException 의미, 발생 이유
- Java - NullPointerException 원인, 해결 방법
- Seleninum의 ConnectionFailedException: Unable to establish websocket connection 해결
- Java - compareTo(), 객체 크기 비교
- Java - BufferedWriter로 파일 쓰기
- Java - BufferedReader로 파일 읽기
- Java charAt() 함수 알아보기
- Java - BigInteger 범위, 비교, 연산, 형변환
- Java contains()로 문자(대소문자 X) 포함 확인
- Java - Set(HashSet)를 배열로 변환
- Java - 문자열 첫번째 문자, 마지막 문자 확인
- Java - 문자열 한글자씩 자르기
- Java - 문자열 단어 개수 가져오기
- Java - 1초마다 반복 실행
- Java - 배열을 Set(HashSet)로 변환
- Java - 여러 Set(HashSet) 합치기
- Java - 명령행 인자 입력 받기
- Java - 리스트 역순으로 순회, 3가지 방법
- Java - 특정 조건으로 리스트 필터링, 3가지 방법
- Java - HashMap 모든 요소들의 합계, 평균 계산
- Java - 특정 조건으로 HashMap 필터링
- Java - 싱글톤(Singleton) 패턴 구현
- Java - 숫자 왼쪽에 0으로 채우기
- Java - String 배열 초기화 방법
- Java - 정렬된 순서로 Map(HashMap) 순회
- Java - HashMap에서 key, value 가져오기