设计模式随笔
webbwebwew
学习中.....使用中......,呵呵。
展开
-
单例设计模式(C#) 简单模式
使用场景 来着stackorverflow(http://stackoverflow.com/questions/228164/on-design-patterns-when-to-use-the-singleton) controls concurrent access to a shared resource. access to the resource will原创 2016-08-03 15:01:56 · 416 阅读 · 0 评论 -
单例设计模式(C#) 懒汉模式
Lazy模式的两种方式BaseSingle见 简单模式定义方式1 代码/// <summary>/// /// </summary> public class SafeLazySingle : BaseSingle { private static class SingleWapper { public static SafeLazySingle Instat原创 2016-08-05 11:23:23 · 743 阅读 · 0 评论 -
单例设计模式(C#) DoubleCheck
单例模式-Doublecheck原创 2016-08-18 11:30:44 · 794 阅读 · 0 评论