标签:style blog http color io os 使用 ar java
单例模式
一、单例模式特点:
1. 单例模式的优点
2. 单例模式的缺点
3. 单例模式的使用场景
在一个系统中,要求一个类有且仅有一个对象,如果出现多个对象就会出现“不良反应”时,则可以采用单例模式,具体的场景如下:
4. 单例模式的注意事项
首先,在高并发情况下,请注意单例模式的线程同步问题。单例模式有几种不同的实现方式,上面的例子不会出现产生多个实例的情况,但是代码清单7-4所示的单例模式就需要考虑线程同步。
二、常用的单例模式:
1.经典模式:
1 public class Singleton 2 { 3 private static Singleton instance; 4 5 private Singleton() 6 { 7 8 } 9 10 public static Singleton GetInstance() 11 { 12 if(instance==null) 13 { 14 instance=new Singleton(); 15 } 16 return instance; 17 } 18 }
2.Lazy模式:
1 public class Singleton 2 { 3 private static Singleton instance; 4 private static object _lock=new object(); 5 6 private Singleton() 7 { 8 9 } 10 11 public static Singleton GetInstance() 12 { 13 if(instance==null) 14 { 15 lock(_lock) 16 { 17 if(instance==null) 18 { 19 instance=new Singleton(); 20 } 21 } 22 } 23 return instance; 24 } 25 }
3.饿汉模式:
1 public sealed class Singleton 2 { 3 private static readonly Singleton instance=new Singleton(); 4 5 private Singleton() 6 { 7 } 8 9 public static Singleton GetInstance() 10 { 11 return instance; 12 } 13 }
标签:style blog http color io os 使用 ar java
原文地址:http://www.cnblogs.com/zlp520/p/3999228.html