码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式读书笔记-单件模式(创建型模式)

时间:2015-07-02 20:56:27      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

让一个类只有一个对象,全局唯一

非多线程模式,实现方法:

方法1:

技术分享
1     public class SingletonTest
2     {
3         public static readonly SingletonTest Instance = new SingletonTest();
4         private SingletonTest() { }
5     }
View Code

方法2:

技术分享
1     public class SingletonTest
2     {
3         public static readonly SingletonTest Instance;
4         static SingletonTest()
5         {
6             Instance = new SingletonTest();
7         }
8         private SingletonTest() { }
9     }
View Code

 多线程模式,实现方法:

技术分享
 1     public class SingletonTest
 2     {
 3         private static volatile SingletonTest instance = null;
 4         private static object lockobj = new object();
 5         private SingletonTest() { }
 6         public static SingletonTest Instance
 7         {
 8             get
 9             {
10                 if (instance == null)
11                 {
12                     lock (lockobj)
13                     {
14                         if (instance == null)
15                         {
16                             instance = new SingletonTest();
17                         }
18                     }
19                 }
20                 return instance;
21             }
22         }
23     }
View Code

 

设计模式读书笔记-单件模式(创建型模式)

标签:

原文地址:http://www.cnblogs.com/dishiyicijinqiu/p/4617003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!