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

剑指offer-2.单例模式

时间:2018-03-13 12:21:07      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:nullptr   new   使用   free   成员变量   单例模式   template   color   offer   

0 问题

实现一个单例模式

1 分析

实现单例模式的关键在于:

  1. 将构造函数设置为private,或是protected
  2. 创建一个静态函数,调用构造函数。
  3. 使用一个静态成员变量保存单例对象
  4. 因为只能在堆上分配内存,因此需要一个函数显式的调用析构函数

2 实现

class Singleton 
{
public:
    static Singleton* get()
    {
        if(obj==nullptr)
        {
            MuteLock lock(mutex);
            if(obj==nullptr)
            {
                obj=new Singleton;
            }
        }
        return obj
    }
    
    ~Singleton();
    static void free()
    {
        delete obj;
    }

private:
    Singleton();

    static Singleton* obj;
    Mutex mutex;
};

static Singleton* Singleton::obj=nullptr;

 

 

3 拓展

模板单例模式。派生自本模板的子类都是单例模式。

template <typename T>
class Singleton
{
public:
    static Singleton* get()
    {
        if(obj==nullptr)
        {
            MuteLock lock(mutex);
            if(obj==nullptr)
            {
                // 注意这里是new 的 T
                obj=new T;
            }
        }
        return obj
    }
    
    ~Singleton();
    static void free()
    {
        delete obj;
    }

// 构造函数变为 protected , 因为子类构造函数要调用基类的构造函数。
protected:
    Singleton();
private:
    static Singleton* obj;
    Mutex mutex;
};

static Singleton* Singleton::obj=nullptr;

class Derive : public Singleton<Derive>
{
    // 声明为 友元,因为基类的 get() ,要new 自己,因此基类需要能够访问到自己的构造函数
    friend Singleton<Derive>;
private:
    Derive();
public:
};

 

剑指offer-2.单例模式

标签:nullptr   new   使用   free   成员变量   单例模式   template   color   offer   

原文地址:https://www.cnblogs.com/perfy576/p/8555075.html

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