• 单例实现c++


    #include <iostream>
    using namespace std;
    
    class Singleton
    {
    public:
        static Singleton *GetInstance()
        {
            if (m_Instance == NULL)
            {
                m_Instance = new Singleton();
                cout<<"get Singleton instance success"<<endl;
            }
            return m_Instance;
        }
    
    private:
        Singleton(){cout<<"Singleton construction"<<endl;}
        static Singleton *m_Instance;
    
        // This is important
        class GC // 垃圾回收类
        {
        public:
            GC()
            {
                cout<<"GC construction"<<endl;
            }
            ~GC()
            {
                cout<<"GC destruction"<<endl;
                // We can destory all the resouce here, eg:db connector, file handle and so on
                if (m_Instance != NULL)
                {
                    delete m_Instance;
                    m_Instance = NULL;
                    cout<<"Singleton destruction"<<endl;
                    system("pause");//不暂停程序会自动退出,看不清输出信息
                }
            }
        };
        static GC gc;  //垃圾回收类的静态成员
    
    };
    
    Singleton *Singleton::m_Instance = NULL;
    Singleton::GC Singleton::gc; //类的静态成员需要类外部初始化,这一点很重要,否则程序运行连GC的构造都不会进入,何谈自动析构
    int main(int argc, char *argv[])
    {
        Singleton *singletonObj = Singleton::GetInstance();
        return 0;
    }
    View Code

    前些日志看到一篇博文,关于C++单例模式下m_pinstance指向空间销毁问题,m_pInstance的手动销毁经常是一个头痛的问题,内存和资源泄露也是屡见不鲜,
    能否有一个方法,让实例自动释放。网上已经有解决方案(但是具体实现上表述不足,主要体现在自动析构未能正常运行),那就是定义一个内部垃圾回收类,并且在Singleton中定义一个此类的静态成员。程序结束时,系统会自动析构此静态成员,此时,在此类的析构函数中析构Singleton实例,就可以实现m_pInstance的自动释放。

    来自http://blog.csdn.net/roy1261/article/details/51425987

  • 相关阅读:
    密码朋克的社会实验(一):开灯看暗网
    ThinkPHP5框架缺陷导致远程命令执行(POC整合帖)
    SQL基本注入演示
    从SQL注入到内网漫游
    业务逻辑漏洞探索之敏感信息泄露
    Web安全之XSS Platform搭建及使用实践
    iOS URL Schemes与漏洞的碰撞组合
    phpcms2008远程代码执行漏洞
    使用RSA加密在Python中逆向shell
    源码级调试的XNU内核
  • 原文地址:https://www.cnblogs.com/li-daphne/p/5915307.html
Copyright © 2020-2023  润新知