设计模式之单例模式

此单例模式非内存泄漏非线程安全。

singleton.h

#pragma once

#define DISALLOW_COPY(TypeName) \
    TypeName(const TypeName&){}

#define DISALLOW_ASSIGN(TypeName) \
    TypeName operator=(const TypeName&){}

#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
    TypeName(const TypeName&) {} \
    TypeName operator=(const TypeName&){}

#include <memory>
#include <iostream>

using namespace std;


class Singleton
{

public:
    ~Singleton();

private:
    explicit Singleton();
    DISALLOW_COPY_AND_ASSIGN(Singleton)

public:
    static Singleton *getInstance();

private:
    static Singleton *m_pInstance;
//    static std::shared_ptr<Singleton> m_pInstance;


//private:
//    class Deleter
//    {
//    public:
//        Deleter()
//        {
//            cout << "Deleter()" << endl;
//        }

//        ~Deleter()
//        {
//            cout << "~Deleter()" << endl;

//            if (NULL != Singleton::m_pInstance)
//            {
//                delete Singleton::m_pInstance;
//            }
//        }
//    };
//    // 定义一个静态的Deleter实例
//    static Deleter deleter;
};

singleton.cpp

#include "Singleton.h"

Singleton *Singleton::m_pInstance;
//std::shared_ptr<Singleton> Singleton::m_pInstance;

//Singleton::Deleter Singleton::deleter;


Singleton::~Singleton()
{
    cout << "~Singleton()" << endl;
}


Singleton::Singleton()
{
    cout << "Singleton()" << endl;
}

Singleton *Singleton::getInstance()
{
//    //懒汉模式(会内存泄漏, 如果类内部定义静态Deleter实例也不会内存泄露)

//    if (NULL == m_pInstance)
//        m_pInstance = new Singleton();
//    return m_pInstance;


    //饿汉模式(不会内存泄露)
    static Singleton instance;
    return &instance;


//    //懒汉模式(采用智能指针,不会内存泄漏)
//    if (nullptr == m_pInstance.get())
//    {
//        m_pInstance = std::auto_ptr<Singleton>(new Singleton);
//    }
//    return m_pInstance.get();
}

切记一点:Qt项目中,单例模式主动delete窗体会和Qt本身对象树析构机制冲突,造成二次析构,从而导致出现无法访问0xfffffffe之类的错误,Qt析构机制只是将对象delete掉,并不会将对象置为NULL。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值