码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式

时间:2016-01-15 20:27:33      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

    template <typename T>
    class Singleton
    {
    public:
        template <typename... Args>
        static T* Instance(Args&&... args)
        {
            if ( m_pInstance == NULL )
            {
                m_pInstance = new T(std::forward<Args>(args)...);
            }
            return m_pInstance;
        }

        static T * GetInstance()
        {
            if ( m_pInstance == NULL )
            {

            }
            return m_pInstance;
        }

        static void DestoryInstance()
        {
            delete m_pInstance;
            m_pInstance = NULL;
        }

    private:
        Singleton();
        virtual ~Singleton();
        Singleton(const Singleton&);
        Singleton& operator = (const Singleton &);

        static T *m_pInstance;

    };
    template <typename T>
    T* Singleton<T>::m_pInstance = NULL;

 

 
 

 

单例模式

标签:

原文地址:http://www.cnblogs.com/kaishan1990/p/5134004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!