主要功能有兩個
1. 只存在一個 - 永遠只有自己很孤獨 所以取名叫singleton
2. 懶惰創建 - 在使用之前都不會被創建 , 一直到有人使用才創建 可以減少消耗
程式碼
public class Singleton
{
private static Singleton _instance = null;
private Singleton()
{
}
public static Singleton Instance()
{
if (_instance == null)
{
_instance = new Singleton();
}
return _instance;
}
}
沒有留言:
張貼留言