用工厂/或构建器替换构造函数
我正在使用 IntelliJ 10 社区版,我注意到有两个相似的重构选项:
- 用工厂替换构造函数 - 用构建器替换构造函数
这两者有什么区别?我什么时候想使用另一个?
谢谢
I am using IntelliJ 10 Comnunity Edition, and I noticed there are two refactoring options which are similar:
-Replace constructor with factory
-Replace constructor with builder
What are the differences between these two? When would I want to use over another?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当对象能够满足所有不变量时,使用构造函数来构建对象。要了解构建器和工厂之间的区别,请查看这篇文章 构建器设计模式和工厂设计模式有什么区别?
Use constructors to build an object when it can satisfy all the invariants. To understand the difference between builder and factory look this post What is the difference between Builder Design pattern and Factory Design pattern?