设计模式——单例模式(未完成)

C++

class CSingleton
{
private:
    CSingleton() //构造函数是私有的
    {
    }
        static CSingleton *m_pInstance;  
public:
    static CSingleton * GetInstance()
    {
        static CSingleton *m_pInstance;
        if(m_pInstance == NULL) //判断是否第一次调用
            m_pInstance = new CSingleton();
        return m_pInstance;
    }
};

 

   
posted @ 2017-10-26 15:44  白菜菜白  阅读(197)  评论(0编辑  收藏  举报