单例模式有哪些好的用途?它可以被接受吗?
可能的重复:
单例:应该如何使用
我读到单例很糟糕。例如,它使代码难以测试。单例有什么可接受的用途吗?
Possible Duplicate:
Singleton: How should it be used
I've read that singletons are bad. For instance, it makes the code hard to test. Are there any acceptable uses of singletons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有时您只需要一个到数据库的连接。将连接器设置为单例可确保您不会启动多个连接。
Sometimes you want one and only one connection to a database. Making your connector a singleton ensures that you will not spin up multiple connections.