单例内存释放问题

#include <thread>
#include <iostream>
#include <mutex>
using namespace std;

std::mutex mtx;
std::once_flag g_flag;//系统定义的标记

class testdanli
{
public:
    static void CreateInstance()//只被调用1次
    {
        myPtr = new testdanli();
        static deletetest c1;
        cout << "被执行" << endl;
    }

    static testdanli* instance()
    {
        std::call_once(g_flag, CreateInstance);
        //if (myPtr == nullptr)
        //{
        //    std::lock_guard<std::mutex> m(mtx);
        //    if (myPtr == nullptr)
        //    {
        //        myPtr = new testdanli();
        //        static deletetest c1;
        //    }
        //}
        return myPtr;
    }
    //~testdanli()
    //{
    //    if (myPtr != nullptr)
    //    {
    //        delete myPtr;
    //        myPtr = nullptr;
    //    }
    //}
    class deletetest
    {
    public:
        ~deletetest()
        {
            if (testdanli::myPtr != nullptr)
            {
                delete testdanli::myPtr;
                testdanli::myPtr = nullptr;
            }
        }
    };
private:
    testdanli() {};
    static testdanli* myPtr;
};
testdanli*  testdanli::myPtr = nullptr;

void treadEnter()
{
    testdanli* test = testdanli::instance();

}
int main()
{
    thread th1(treadEnter);
    thread th2(treadEnter);
    th1.join();
    th2.join();
    return 0;
}

当程序推出的testdanli类中的析构函数不会被调用,而deletetest类的析构函数会被调用。具体原因,暂未清楚,断点调试的结果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值