Builder 이전의 생성 방식 점층적 생성자 패턴 정적 팩토리 메소드나 생성자의 경우 파라미터가 많은 경우 적절히 대응하기가 쉽지 않다. 다음은 생성자 또는 정적 팩토리 메소드에서 사용했던 점층적 생성자 패턴이다. public class Car{ private final int type; private final int doors; private final int oilType; public Car(int type){ this(type, 4); } public Car(int type, int doors){ this(type, doors, 0); } public Car(int type, int doors, int oilType){ this.doors = doors; this.type = type; thi..