■ The New Objects Class
1) Objects.requireNonNull(T), Objects.requireNonNull(T, String)
#. 아래 Person 객체 생성시 newLastName이나 newFirstName에 null이 들어갈 경우 NullPointerException 발생.
#. Not Null임을 보장하고 있으므로 해당 Property를 사용할 때 Null 검사를 생략할 수 있음.
public class Person {
private String lastName;
...