91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Lombok中的@Builder注解怎么用

發布時間:2022-03-03 13:57:55 來源:億速云 閱讀:366 作者:小新 欄目:開發技術

這篇文章主要介紹Lombok中的@Builder注解怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

Lombok中的@Builder注解的使用

作用

@Builder注解的作用主要是用來生成對象,并且可以為對象鏈式賦值。

引入依賴

因為@Builder注解是lombok中的東西,所以第一步我們需要引入lombok的依賴,如下圖:

Lombok中的@Builder注解怎么用

第二步給實體類加上@Builder注解

第二步我們需要給我們的實體類加上一個@Builder注解,如下圖:

Lombok中的@Builder注解怎么用

第三步使用測試使用@Builder注解生成對象

Lombok中的@Builder注解怎么用

實體類加上@Builder注解之后的編譯結果

實體類加上@Builder注解之后,編譯之后會多出一個builder()方法,和一個CardBuilder靜態內部類,如下圖:

Lombok中的@Builder注解怎么用

Lombok中的@Builder注解怎么用

代碼如下:

public class Card {
    private int id;
    private String name;
    private boolean sex;

    public static Card.CardBuilder builder() {
        return new Card.CardBuilder();
    }

    public Card(int id, String name, boolean sex) {
        this.id = id;
        this.name = name;
        this.sex = sex;
    }

    public Card() {
    }

    public int getId() {
        return this.id;
    }

    public String getName() {
        return this.name;
    }

    public boolean isSex() {
        return this.sex;
    }

    public void setId(int id) {
        this.id = id;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void setSex(boolean sex) {
        this.sex = sex;
    }

    public boolean equals(Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof Card)) {
            return false;
        } else {
            Card other = (Card)o;
            if (!other.canEqual(this)) {
                return false;
            } else if (this.getId() != other.getId()) {
                return false;
            } else {
                Object this$name = this.getName();
                Object other$name = other.getName();
                if (this$name == null) {
                    if (other$name == null) {
                        return this.isSex() == other.isSex();
                    }
                } else if (this$name.equals(other$name)) {
                    return this.isSex() == other.isSex();
                }

                return false;
            }
        }
    }

    protected boolean canEqual(Object other) {
        return other instanceof Card;
    }

    public int hashCode() {
        int PRIME = true;
        int result = 1;
        int result = result * 59 + this.getId();
        Object $name = this.getName();
        result = result * 59 + ($name == null ? 43 : $name.hashCode());
        result = result * 59 + (this.isSex() ? 79 : 97);
        return result;
    }

    public String toString() {
        return "Card(id=" + this.getId() + ", name=" + this.getName() + ", sex=" + this.isSex() + ")";
    }

    public static class CardBuilder {
        private int id;
        private String name;
        private boolean sex;

        CardBuilder() {
        }

        public Card.CardBuilder id(int id) {
            this.id = id;
            return this;
        }

        public Card.CardBuilder name(String name) {
            this.name = name;
            return this;
        }

        public Card.CardBuilder sex(boolean sex) {
            this.sex = sex;
            return this;
        }

        public Card build() {
            return new Card(this.id, this.name, this.sex);
        }

        public String toString() {
            return "Card.CardBuilder(id=" + this.id + ", name=" + this.name + ", sex=" + this.sex + ")";
        }
    }
}

以上是“Lombok中的@Builder注解怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

澄江县| 咸宁市| 沈丘县| 德昌县| 鄂温| 南乐县| 乐安县| 连江县| 修水县| 城固县| 东乌珠穆沁旗| 南投市| 光山县| 肃宁县| 昆山市| 宜兰县| 永吉县| 崇仁县| 巴中市| 阿尔山市| 普宁市| 禄丰县| 沧源| 新疆| 肥东县| 如东县| 安溪县| 普兰店市| 舒城县| 宕昌县| 观塘区| 万山特区| 宜宾县| 鞍山市| 姚安县| 海南省| 湘潭县| 淳化县| 额济纳旗| 来宾市| 漠河县|