文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Lombok中的@Builder注解怎么用

2023-06-25 16:01

关注

这篇文章主要介绍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注解怎么用”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯