c++线程安全的单例模式demo

线程安全的单例模式

使用c++编写

我们使用了std::shared_ptr来管理Singleton对象的生命周期。当最后一个引用该Singleton对象的std::shared_ptr被销毁时,单例对象也将被自动删除。

注意,这里我们使用std::call_once和std::once_flag来确保初始化只执行一次,这使得我们的实现既简洁又线程安全。

源码

#include <iostream>
#include <mutex>
#include <memory>

class Singleton {
public:
    // 静态成员函数作为访问点
    static std::shared_ptr<Singleton> getInstance() {
        std::call_once(initInstanceFlag, &Singleton::initSingleton);
        return instance;
    }

    Singleton(const Singleton&) = delete;  // 禁止复制构造
    Singleton& operator=(const Singleton&) = delete;  // 禁止赋值

    // 若干成员函数,实现业务逻辑
    void printMessage() const {
        std::cout << "Hello from singleton!" << std::endl;
    }

private:
    Singleton() {}  // 私有构造函数
    ~Singleton() {} // 私有析构函数

    static void initSingleton() {
        instance.reset(new Singleton());
    }

    static std::once_flag initInstanceFlag;
    static std::shared_ptr<Singleton> instance;
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值