首页 > 编程语言 > 详细

c++单例模式

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

自己写的单例模式

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++单例模式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!