디자인 모드 - 생 성 형 - Builder

본질 - 대상 이 만 든 인 코딩 간소화
무엇
복잡 한 대상 을 만 드 는 방식

대상 생 성 절 차 를 간소화 하 였 습 니 다.
코드 가 독성 을 향상 시 켰 습 니 다.
대상 생 성 과정 과 분리 표시
어떻게
 
/**
 * @Description:      
 * @date 2018-02-17 21:22
 */
@ToString
@Getter
@Setter
public class Person {
    private final String name;
    private int age;
    private String sex;
    private String father;
    private String mather;

    public static class Builder {
        private final String name;
        private int age;
        private String sex;
        private String father;
        private String mather;

        public Builder(String name) {
            this.name = name;
        }

        public Builder age(int age) {
            this.age = age;
            return this;
        }

        public Builder sex(String sex) {
            this.sex = sex;
            return this;
        }

        public Builder mather(String mather) {
            this.mather = mather;
            return this;
        }
        public Builder father(String father) {
            this.father = father;
            return this;
        }

        public Person Build(){
            return new Person(this);
        }
    }

    private Person(Builder builder){
        this.name = builder.name;
        this.sex = builder.sex;
        this.father = builder.father;
        this.mather = builder.mather;
        this.age = builder.age;
    }
}

public static void main(String[] args) throws IOException {
    Person person = new Person.Builder("  ").sex(" ").age(23).Build();
    System.out.println(person);
}

단판
@Setter
@Getter
@ToString
public class Schema {

    /**
     *   
     */
   @NonNull
    private String intent;
    /**
     *   
     */
    private int score;

    public Schema buildIntent(String intent){
        this.intent = intent;
        return this;
    }
    public Schema buildScore(int score){
        this.score = score;
        return this;
    }
}

좋은 웹페이지 즐겨찾기