标签:div pre == style nbsp on() let span ons
#region Singleton class Singleton { private static Singleton singleton; private static object lockObj = new object(); private Singleton() { } public static Singleton GetInstance() { if (singleton == null) { lock (lockObj) { if (singleton == null) { singleton = new Singleton(); } } } return singleton; } } static void SingletonTest() { Singleton s1 = Singleton.GetInstance(); Singleton s2 = Singleton.GetInstance(); if (s1 == s2) { Console.WriteLine("The same instance"); } } #endregion
标签:div pre == style nbsp on() let span ons
原文地址:http://www.cnblogs.com/zxxxx/p/7400502.html