C#面向对象设计模式纵横谈——笔记(2)

<!--[if !supportLists]-->一、 <!--[endif]-->Singleton单件(创建型模式)

<!--[if !supportLists]-->1、  <!--[endif]-->结构(Structure

<!--[if !vml]--><!--[endif]-->

<!--[if !supportLists]-->2、 <!--[endif]-->单线程Singleton实现

public class Singleton

{

    private static Singleton instance;

 

    private Singleton() { }

 

    public static Singleton Instance

    {

        get

        {

            if (instance == null)

            {

                instance = new Singleton();

            }

            return instance;

        }

    }

}

 

<!--[if !supportLists]-->3、 <!--[endif]-->单线程Singleton模式的几个要点

<!--[if !supportLists]-->a)   <!--[endif]-->Singleton模式中的实例构造器可以设置成protected以允许子类派生。

<!--[if !supportLists]-->b)   <!--[endif]-->Singleton模式一般不要支持ICloneable接口,因为这可能会导致多个对象实例,与Singleton模式的初衷违背。

<!--[if !supportLists]-->c)   <!--[endif]-->Singleton模式一般不要支持序列化,因为这也有可能导致多个对象实例,同样与Singleton模式的初衷违背。

<!--[if !supportLists]-->d)   <!--[endif]-->Singleton模式只考虑到对象创建的管理,没有考虑对象销毁的管理。就支持垃圾回收的平台和对象的开销来讲,我们一般没有必要对其销毁进行特殊的管理。

<!--[if !supportLists]-->e)   <!--[endif]-->不能应对多线程环境:在多线程环境下,使用Singleton模式仍然有可能得到Singleton类的多个实例对象。

<!--[if !supportLists]-->4、 <!--[endif]-->多线程Singleton模式实现

public class Singleton

{

    private static volatile Singleton instance = null;

    private static object lockHelper = new object();

 

    private Singleton() { }

 

    public static Singleton Instance

    {

        get

        {

            if (instance == null)

            {

                lock (lockHelper)

                {

                    if (instance == null)

                    {

                        instance = new Singleton();

                    }

                }

            }

            return instance;

        }

    }

}

 

<!--[if !supportLists]-->5、 <!--[endif]-->使用.NET类型初始化机制实现多线程Singleton模式

sealed class Singleton

{

    public static readonly Singleton Instance = new Singleton();

 

    private Singleton() { }

}

相当于

sealed class Singleton

{

    public static readonly Singleton Instance;

 

    static Singleton()

    {

        Instance = new Singleton();

    }

 

    private Singleton() { }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值