객체의 널 체크 자바에서 객체의 null 여부를 체크하기 위해서는 두 가지 방법을 사용할 수 있다. java.utils.Objects에 구현되어 있는 isNull 메서드 == 연산자를 사용 사용 방법 isNull() import java.util.Objects; public class Example { public static void main(String[] args) { String str1 = null; String str2 = "hello"; System.out.println(Objects.isNull(str1)); System.out.println(Objects.isNull(str2)); } } // 출력 true false == 연산자 public class Example { public st..