JAVA/Effective Java 썸네일형 리스트형 Item 1) 생성자 대신 정적 팩토리 메소드를 고려하라 1. 정적 팩토리 메소드란 ? 정적 팩토리 메소드(Static Factory Method)란 보다 명시적으로 객체를 생성하는 클래스 메소드다. 대표적으로 java.time.LocalTime에서 이 것을 찾을 수 있다. //----------------------------------------------------------------------- /** * Obtains an instance of {@code LocalTime} from an hour and minute. * * This returns a {@code LocalTime} with the specified hour and minute. * The second and nanosecond fields will be set to zero. *.. 더보기 이전 1 2 3 4 다음