当前位置:网站首页>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
边栏推荐
- 遇到MapStruct后,再也不手写PO,DTO,VO对象之间的转换了
- 小软件大作用 | 如何省时省力进行Gerber图层快速对比?
- C语言——青蛙跳台阶(递归)
- Desthiobiotin衍生物Desthiobiotin-PEG4-Amine/Alkyne/Azide/DBCO
- ts集成和使用
- How to carry out AI business diagnosis and quickly identify growth points for cost reduction and efficiency improvement?
- 面试官:Redis中过期的key是怎么被删除的?
- Unreal 本地化 国家化 多语言
- vs Code 运行一个本地WEB服务器
- 【CAS:2306109-91-9 |胺-PEG4-脱硫生物素】价格
猜你喜欢
随机推荐
vs Code 运行一个本地WEB服务器
漫画 | 老板裁掉我两周后,又把我请回去,工资翻番!
【有奖征文】秋招特训,打造你的专属产品体验
awk statistical average max min
腾讯云胡启明:Kubernetes云上资源的分析与优化
EasyUi常用代码
遇到MapStruct后,再也不手写PO,DTO,VO对象之间的转换了
大资本已开始逃离加密领域?
五分钟入门文本处理三剑客grep awk sed
idea源码无法下载
"WAIC 2022 · hackers marathon" two ants wealth competition invited you to fight!
Aura clock chip generation configuration file script
SAP 电商云 Accelerator 和 Spartacus UI 的工作机制差异
常用正则表达式[通俗易懂]
从卖产品到卖“链路”:20条策略 解读直播带货迭代玩法
Go study notes (Part 1) Configuring the Go development environment
长时间序列遥感数据处理及在全球变化、物候提取、植被变绿与固碳分析、生物量估算与趋势分析等领域中的应用
动态数组底层是如何实现的
Zero-knowledge proof notes - private transaction, pederson, interval proof, proof of ownership
Tensorflow2 环境搭建









