Guava: Google Core Libraries for JavaBase - Objects.equal() : equal 비교시 null 체크를 하지 않아도 된다. - Objects.hashCode() : hash코드 생성을 보다 쉽게 만들 수 있다. - Objects.toStringHelper() : toString객체를 보다 쉽게 만들 수 잇다. -> 일반적인 코드 :public class Book { private String title; private String writer; private int price; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } pub..