什么时候使用工厂模式?
这个工厂到底是什么以及使用工厂模式的优点是什么?它提供了可插拔的架构吗?为什么叫“工厂”?
What is this factory all about and what are the advantages of using factory patterns? Does it give a plugable architecture? Why it is called "Factory"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是工厂,因为它实际上是“制造”(创建)一个对象。
GoF 实际上定义了两种工厂模式:
基本上,它们都试图将调用客户端与了解类/接口的实际具体实现分离。
It is factory since it is actually "Manufacturing" (Create) an object.
There's actually two kind of factory pattern defined by GoF:
Basically both of them tries to decouple the calling client from knowing the actual concrete implementation of the class/interface.
您可以通过阅读这篇 PDF 文章找到您需要的所有内容
You can find all you need by reading this PDF article