首页 > 其他 > 详细

设计模式——单例模式

时间:2016-07-25 00:09:15      阅读:209      评论:0      收藏:0      [点我收藏+]
 1     internal class SingletonOne
 2     {
 3         private static SingletonOne _singleton;
 4         private SingletonOne()
 5         {
 6         }
 7 
 8         public static SingletonOne Instance
 9         {
10             get
11             {
12                 if (_singleton == null)
13                 {
14                     Interlocked.CompareExchange(ref _singleton, new SingletonOne(), null);
15                 }
16 
17                 return _singleton;
18             }
19         }
20     }

 

设计模式——单例模式

原文:http://www.cnblogs.com/jaysen/p/5701979.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!