中国开发网: 论坛: .NET/C#: 贴子 651043
龙之吻: 这个也是线程安全的 。
public class Singleton<T> where T: new()
{

// Instead of compile time check, we provide a run time check
// to make sure there is only one instance.
protected Singleton(){Debug.Assert(null == instance);}
protected static T instance = new T();
public static T Instance
{
get{return instance;}
}
}

相关信息:


欢迎光临本社区,您还没有登录,不能发贴子。请在 这里登录