curioussingleton.cpp
来自「很经典的书籍」· C++ 代码 · 共 38 行
CPP
38 行
//: C10:CuriousSingleton.cpp
// Separates a class from its Singleton-ness (almost)
#include <iostream>
using namespace std;
template<class T>
class Singleton {
public:
static T& instance() {
static T theInstance;
return theInstance;
}
protected:
Singleton() {}
virtual ~Singleton() {}
private:
Singleton(const Singleton&);
Singleton& operator=(const Singleton&);
};
// A sample class to be made into a Singleton
class MyClass : public Singleton<MyClass> {
int x;
protected:
friend class Singleton<MyClass>;
MyClass(){x = 0;}
public:
void setValue(int n) { x = n; }
int getValue() const { return x; }
};
int main() {
MyClass& m = MyClass::instance();
cout << m.getValue() << endl;
m.setValue(1);
cout << m.getValue() << endl;
} ///:~
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?