C#:单例模式和静态模式之间的区别
可能的重复:
静态类和单例模式之间的区别?
我正在考虑C# 上的静态类和单例模式之间的选择。
你知道静态类是如何创建的吗? 特别是,我想知道静态类在程序执行期间是否唯一,以及单例模式的优点或缺点是什么。
先感谢您。
Possible Duplicate:
Difference between static class and singleton pattern?
I'm thinking about the choice between Static classes and Singleton pattern on C#.
Do you know how static classes are created?
In particular, I would know if a static class is unique during program execution and what are pro or cons against Singleton pattern.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
静态类不能被实例化。
单例可以实例化一次。
有关单例模式使用的讨论
还有更多内容
A static class can not be instanciated.
A singleton can be instanciated once.
Discussion about the use of the Singleton pattern
And more here