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

C++单例模式

时间:2018-08-09 17:24:55      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:tin   include   static   ons   turn   operator   模式   私有   文件   

应该有好多小伙伴会遇到对象频繁创建与销毁,或者是多个类共用一个类的时候怎么解决,今天就给大家好好讲讲单例模式

 

1、既然是单例模式那就只能存在一个对象

2、头文件

class Singleton{
public:
	static Singleton* getInstance();

private:
	Singleton();
	//把复制构造函数和=操作符也设为私有,防止被复制
	Singleton(const Singleton&);
	Singleton& operator=(const Singleton&);

	static Singleton* instance;
};

3、源文件

#include "Singleton.h"
//因为是static成员变量,需要在这里初始化
Singleton* Singleton::instance = NULL;

Singleton::Singleton(){

}


Singleton::Singleton(const Singleton&){

}


Singleton& Singleton::operator=(const Singleton&){

}


//在此处初始化
Singleton* Singleton::getInstance(){
       if(instance == NULL)

       {
            instance = new Singleton();
       }
        return instance;
}

  

4、使用方法

int main(int argc, char *argv[])
{
   Singleton* singleton1 = Singleton::getInstance();
  //下面就可以用这个类里面的变量或者方法等
    Singleton* singleton2 = Singleton::getInstance();


   //singleton1和singleton2两个类指针对象共享同一份成员变量等
   return 0; 
}

  

C++单例模式

标签:tin   include   static   ons   turn   operator   模式   私有   文件   

原文地址:https://www.cnblogs.com/xupeidong/p/9448058.html

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