抽象工厂设计模式:为什么需要与单例一起使用

发布于 2024-10-02 11:47:35 字数 38 浏览 2 评论 0原文

我只是不明白为什么它经常与单例一起使用。

谢谢

i just dont understand why it is often used with a singleton.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小嗲 2024-10-09 11:47:35

工厂是单例。否则你就必须到处经过工厂。由于它不是您创建的工厂,而是工厂为您创建对象,因此您仍然可以与具体对象类型很好地分离。你只依赖工厂。

The factory is the singleton. Otherwise you have to pass the factory around all over the place. Since it's not a factory you are creating, rather the factory creates the object for you, you still have good separation from the concrete object types. You only depend on the factory.

聆听风音 2024-10-09 11:47:35

Singleton 是一种过度使用的模式,但是当特定类的实例不应超过一个时,应该使用它。

在抽象工厂模式中,通常一次不需要多个工厂,如果在客户端的生命周期中有两个不同类型的工厂在运行,则两种类型的制造对象可能不兼容,并发生冲突。

Singleton is an overused pattern, but it's supposed to be used when there should be no more than one instance of a particular class.

In the abstract factory pattern, there is usually no need for more than one factory at a time, and if there were two factories of different types operating during the client's lifetime the two types of manufactured objects might be incompatible, and come into conflict.

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