文章出處
文章列表
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace Singleton { public class SingletonTest { private static SingletonTest singleton; private static readonly object syncObject = new object(); /// <summary> /// 構造函數必須是私有的 /// 這樣在外部便無法使用 new 來創建該類的實例 /// </summary> private SingletonTest() { } /// <summary> /// 定義一個全局訪問點 /// 設置為靜態方法 /// 則在類的外部便無需實例化就可以調用該方法 /// </summary> /// <returns></returns> public static SingletonTest getSingleton() { //這里可以保證只實例化一次 //即在第一次調用時實例化 //以后調用便不會再實例化 //第一重 singleton == null if (singleton == null) { lock (syncObject) { //第二重 singleton == null if (singleton == null) { Console.WriteLine(String.Format("我是被線程:{0}創建的!", Thread.CurrentThread.Name)); singleton = new SingletonTest(); } } } return singleton; } } }
文章列表
全站熱搜