抽象工厂设计模式:为什么需要与单例一起使用
我只是不明白为什么它经常与单例一起使用。
谢谢
i just dont understand why it is often used with a singleton.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我只是不明白为什么它经常与单例一起使用。
谢谢
i just dont understand why it is often used with a singleton.
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
工厂是单例。否则你就必须到处经过工厂。由于它不是您创建的工厂,而是工厂为您创建对象,因此您仍然可以与具体对象类型很好地分离。你只依赖工厂。
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.
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.