单例

 

private static T ins;
public static T Ins
{
get
{
if(ins == null)
{
ins = new T();
}
return ins;
}
}

 

posted @ 2023-02-08 11:29  梦凡尘_mzz  阅读(27)  评论(0)    收藏  举报