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

设计模式:单例模式

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

标签:class   ==   判断   null   char*   设计模式   单例模式   har   自己   

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

#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;

}

设计模式:单例模式

标签:class   ==   判断   null   char*   设计模式   单例模式   har   自己   

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

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