码迷,mamicode.com
首页 > 编程语言 > 详细

c++单例模式

时间:2017-10-15 23:21:56      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:span   模式   instance   stat   tin   single   blog   ++   单例   

自己写的单例模式

class singleton{
public:
    
    singleton(const singleton&) = delete;
    singleton& operator=(const singleton& rhs) = delete;
    static singleton* getinstance(){
        if (ptr == NULL) {
            ptr = new singleton(); return ptr;
        }
        else return NULL;
    }
    int geta(){ return a; }
private:
    static singleton* ptr;
    singleton(){ a = 5; }
    int a;
};
Singleton* Singleton::ptr = NULL;

 

c++单例模式

标签:span   模式   instance   stat   tin   single   blog   ++   单例   

原文地址:http://www.cnblogs.com/hchacha/p/7674727.html

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