C#实现类只实例化一次(被多个类访问调用)
摘要:
C#简单写法如下: public class Singleton { private static Singleton _instance = null; private Singleton(){} public static Singleton CreateInstance() { if(_ins 阅读全文
posted @ 2018-11-14 13:28 asdyzh 阅读(1133) 评论(0) 推荐(0) 编辑