有時,我們需要在應用程序中只允許存在一個類的實例。
如windows的任務管理器,永遠只可能出現一個,這就是典型的單例模式。
單例模式提供一個全局的訪問點,並且讓外部無法對該類進行new()
典型的單例模式版本:
public sealed class Singleton
{
static Singleton instance=null;
Singleton()
{
}
public static Singleton Instance
{
get
{
if (instance==null)
{
instance = new Singleton();
}
return instance;
}
}
}
public sealed class Singleton
{
static Singleton instance=null;
Singleton()
{
}
public static Singleton Instance
{
get
{
if (instance==null)
{
instance = new Singleton();
}
return instance;
}
}
}
但這並不是一個好的代碼,因為這樣的代碼不是安全的,很可能被其它線程修改。
第二個版本:
public sealed class Singleton
{
static Singleton instance=null;
static readonly object padlock = new object();
Singleton()
{
}
public static Singleton Instance
{
get
{
lock (padlock)
{
if (instance==null)
{
instance = new Singleton();
}
return instance;
}
}
}
}
public sealed class Singleton
{
static Singleton instance=null;
static readonly object padlock = new object();
Singleton()
{
}
public static Singleton Instance
{
get
{
lock (padlock)
{
if (instance==null)
{
instance = new Singleton();
}
return instance;
}
}
}
}
使用了lock關鍵字,確保只能有一個線程可以訪問它。