当前位置:网站首页>How to make good use of builder mode
How to make good use of builder mode
2022-08-04 20:25:00 【51CTO】

介绍
I wrote a project some time ago,An attribute of a class is called more than one.Just started writing a bunch directlyset代码,后来setThe code is just too much,真心看不下去了,Refactored a bit using the builder pattern,嗯,看起来舒服多了.Basically, the builder pattern is used in many frameworks,每个JavaProgrammers must have used the builder pattern too,You just don't realize that this is the builder pattern.
就像你用Collections.sort(List,Comparator)和Arrays.sort(Object[],Comparator)This is a typical implementation of the strategy pattern,Different effects are achieved by passing in different comparators.
改造过程
First let me demonstrate the process of my transformation,用了Lombok插件,不会的可以百度一下.
原来的实现
测试类
后来的实现
测试类
全程链式调用,Know clearly what each field means,And also save the number of lines,not too cool.
How to write a builder pattern?
Look directly at the final compilation generatedclassThe contents of the decompiled file
I don't think I need to explain what this code means for you,That's two parts.
1.Generate builder class,Assign a value to the builder class
2.Use the builder class to generate the desired class
恭喜你,Already understand what the builder pattern is.
Lombok中@Builder注解的使用
if available in your projectLombok插件,You don't have to write your own builder class,直接用@Builder注解即可.如果不可以,Writing a builder class that mimics the above class is also [email protected] the following points to note.
There is no case of inheritance
上面已经演示了
There are cases of inheritance
1.对于父类,使用@AllArgsConstructor注解
2.对于子类,Manually write full-parameter constructors,Internally calls the parent class full parameter constructor,Used on subclass full-argument [email protected]注解
在框架中的应用
基本上所有的JavaFrameworks use the builder pattern,Because chained assignment is really cool.我GoogleA little bit of code using the builder pattern,方便大家理解
Guava Cache框架
参考博客
[1]https://mp.weixin.qq.com/s/91C9X3Zn6Es66yqTqgnPFA
[2]https://mp.weixin.qq.com/s/8Ults75_X8gyshWCatCzUw
边栏推荐
猜你喜欢
随机推荐
MySQL字段类型
刷题-洛谷-P1319 压缩技术
基于单向链表结构的软件虚拟定时器的设计与构建
零知识证明笔记——私密交易,pederson,区间证明,所有权证明
漫画 | 老板裁掉我两周后,又把我请回去,工资翻番!
SAP UI5 ensures that the control id is globally unique implementation method
JSD-2204-酷莎商城(管理员模块)-密码加密-Day10
linkboy 5.0 正式发布,新增语音识别、图像识别
ts集成和使用
Desthiobiotin衍生物Desthiobiotin-PEG4-Amine/Alkyne/Azide/DBCO
Client Side Cache 和 Server Side Cache 的区别
win10 uwp 使用 ScaleTransform 放大某个元素
二叉树是否对称
动态数组底层是如何实现的
二叉树的遍历
刷题-洛谷-P1200 你的飞碟在这儿Your Ride Is Here
【TypeScript】深入学习TypeScript枚举
SAP UI5 确保控件 id 全局唯一的实现方法
C#弹出询问对话框
构建Buildroot根文件系统(I.MX6ULL)








