单例模式,降低对象之间的耦合度
实现: 确保一个类只有一个实例,并提供一个访问它的全局访问点
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
public class Singleton { private static Singleton uniqueInstance;
private static readonly object locker = new object();
private Singleton() { }
public static Singleton GetInstance() { if (uniqueInstance == null) { lock (locker) { if (uniqueInstance == null) { uniqueInstance = new Singleton(); } } } return uniqueInstance; } }
|