06002001单例模式C#实现版本
摘要:
书名:设计模式之禅 作者:秦小波 出版社:机械工业出版社1描述确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例2UML类图图1-1单例模式类图3代码 Singleton.cs类 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace china.sichuan.deyang.Singleton{ /// /// 推荐的单例模式实现类 /// public clas... 阅读全文
posted @ 2014-01-17 17:40 BestNow 阅读(238) 评论(0) 推荐(0) 编辑