Java - Objects.equals()로 객체 비교 방법

Objects.equals()는 객체를 비교해주는 메소드입니다. 내부적으로 Object.equals()를 사용하며 우리가 지금까지 객체를 비교할 때 구현한 패턴들 util 클래스로 만들어둔 것 뿐입니다.

Objects.equals() 구현 방법 및 예제에 대해서 알아보겠습니다.

JDK의 Objects.equals() 소스 코드

Objects 클래스의 equals()는 다음과 같이 구현되어있습니다.

package java.util;

public final class Objects {
  /**
   * Returns {@code true} if the arguments are equal to each other
   * and {@code false} otherwise.
   * Consequently, if both arguments are {@code null}, {@code true}
   * is returned and if exactly one argument is {@code null}, {@code
   * false} is returned.  Otherwise, equality is determined by using
   * the {@link Object#equals equals} method of the first
   * argument.
   *
   * @param a an object
   * @param b an object to be compared with {@code a} for equality
   * @return {@code true} if the arguments are equal to each other
   * and {@code false} otherwise
   * @see Object#equals(Object)
   */
  public static boolean equals(Object a, Object b) {
      return (a == b) || (a != null && a.equals(b));
  }
}

Objects 클래스를 사용하지 않았더라도, 누구나 아래와 같이 사용하던 경험이 있을 것 같습니다. equals()를 호출하는 객체가 null일 가능성이 있기 때문에 null 예외처리를 해야 했습니다.

String aa= "android";
String bb = "google";

if (aa.equals(bb)) {
    System.out.println("aa equal to bb");
}

if (aa != null && aa.equals(bb)) {
    System.out.println("aa equal to bb");
}

Objects 클래스는 위와 같이 직접 구현하던 것을 util 클래스로 만들어둔 것 뿐입니다. Objects.equals() 코드를 보시면 아시겠지만, null객체 두개를 비교할 때 true를 리턴합니다.

equals()로 객체 비교하는 예제

Objects.equals() 다음과 같이 사용할 수 있습니다.

String aa = null;
String bb = null;
if (Objects.equals(aa, bb)) {
  // ...
}
System.out.println("Objects.equals(null, null): " + Objects.equals(aa, bb));

aa = "google";
bb = "google";
System.out.println("Objects.equals(google, google): " + Objects.equals(aa, bb));

aa= "android";
bb = "google";
System.out.println("Objects.equals(android, google): " + Objects.equals(aa, bb));

결과

Objects.equals(null, null): true
Objects.equals(google, google): true
Objects.equals(android, google): false

null객체 두개를 비교할 때 Objects.equalstrue를 리턴하기 때문에, 이것이 싫다면 다음과 같이 구현해야 합니다.

aa = null;
bb = "google";
if (aa != null && Objects.equals(aa, bb)) {
    System.out.println("non null and eqaul");
} else {
    System.out.println("null or not eqaul");
}

또는 Objects.nonNull()을 사용하여 구현할 수도 있습니다.

aa = null;
bb = "google";
if (Objects.nonNull(aa) && Objects.equals(aa, bb)) {
    System.out.println("non null and eqaul");
} else {
    System.out.println("null or not eqaul");
}

참고로, Objects는 nonNull(), isNull() 메소드들도 지원합니다.

public static boolean isNull(Object obj) {
    return obj == null;
}
public static boolean nonNull(Object obj) {
    return obj != null;
}

참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha