什么时候使用工厂模式?

发布于 2024-09-29 16:19:07 字数 52 浏览 6 评论 0原文

这个工厂到底是什么以及使用工厂模式的优点是什么?它提供了可插拔的架构吗?为什么叫“工厂”?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

失去的东西太少 2024-10-06 16:19:07

它是工厂,因为它实际上是“制造”(创建)一个对象。

GoF 实际上定义了两种工厂模式:

  1. 工厂方法
  2. 抽象工厂

基本上,它们都试图将调用客户端与了解类/接口的实际具体实现分离。

It is factory since it is actually "Manufacturing" (Create) an object.

There's actually two kind of factory pattern defined by GoF:

  1. Factory Method
  2. Abstract Factory

Basically both of them tries to decouple the calling client from knowing the actual concrete implementation of the class/interface.

甜`诱少女 2024-10-06 16:19:07

您可以通过阅读这篇 PDF 文章找到您需要的所有内容

You can find all you need by reading this PDF article

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文