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

C++ Singleton + MultiThread

时间:2018-03-23 14:14:01      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:data-   template   edit   lock   null   obj   ace   names   html   

#include <iostream>
#include <mutex>
using namespace std;

template <class T>
class Singleton {
public:
	static T *instance() {
		if (object == NULL) {
			mtx.lock();
			if (object == NULL) object = new T;
			mtx.unlock();
		}
		return object;
	}

private:
	Singleton() {}  // be here? necessary?

static T *object; static mutex mtx; }; template <class T> T* Singleton<T>::object = NULL; template <class T> mutex Singleton<T>::mtx; class Foo { }; int main() { Foo *singletonFoo = Singleton<Foo>::instance(); return 0; }


C++ Singleton + MultiThread

标签:data-   template   edit   lock   null   obj   ace   names   html   

原文地址:https://www.cnblogs.com/llguanli/p/8629707.html

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