首页 > 其他 > 详细

设计模式:单例模式

时间:2020-02-24 09:12:57      阅读:56      评论:0      收藏:0      [点我收藏+]

自己尝试去不用指针的方式写,但是好像发现类不能作为参数,而且也没找到能不能判断类是否存在的函数,所以还是用了指针!

#include "stdafx.h"

class CSingle{

public:
    static CSingle* InstanceOf(){
        if(theSingle == NULL){
            theSingle = new CSingle();
        }
        return theSingle;
    }
private:
    static CSingle* theSingle;
    CSingle(){};
    
};

CSingle* CSingle::theSingle = NULL;


int main(int argc, char* argv[])
{
    CSingle* s = CSingle::InstanceOf();
    return 0;

}

设计模式:单例模式

原文:https://www.cnblogs.com/zpchcbd/p/12355364.html

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