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

C++ Singleton

时间:2014-09-28 02:52:00      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:c++

Singleton in C++:

#include <iostream>
using namespace std;

class Restaurant {
public:
	static Restaurant *getInstance() {
		if (instance == NULL) instance = new Restaurant(100);
		return instance;
	}
	int getSize() { return size; }
	void setSize(int _size) { size = _size; }

private:
	Restaurant(int _size) { size = _size; }
	int size;
	static Restaurant *instance;
};

Restaurant *Restaurant::instance = NULL;

int main() {
	cout<<Restaurant::getInstance()->getSize();
	return 0;
}


C++ Singleton

标签:c++

原文地址:http://blog.csdn.net/jsc0218/article/details/39628537

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