标签: c# .net class static singleton
可能重复: Difference between static class and singleton pattern?
我正在考虑在C#上选择Static类和Singleton模式。
你知道如何创建静态类吗? 特别是,我会知道静态类在程序执行期间是否是唯一的,以及对Singleton模式的利弊是什么。
提前谢谢。
答案 0 :(得分:1)
无法实例化静态类。 单例可以实例化一次。
Discussion about the use of the Singleton pattern
And more here