单件
#include <iostream>
using namespace std;
class Singleton
{
static Singleton s;
static int b;
int i;
Singleton(int x): i(x){};
Singleton& operator=(Singleton&);
Singleton(const Singleton&);
public:
static Singleton& instance(){ return s; };
int getValue(){ return i; };
void setValue(int x){ i = x; };
};
Singleton Singleton::s(47);
int main(void)
{
Singleton &s = Singleton::instance();
cout << s.getValue() <<endl;
Singleton &s2 = Singleton::instance();
s2.setValue(9);
cout << s.getValue() <<endl;
}