一般使用静态的单例类来实现class A { private: A() { //do whatever } public: static A getInstance() { return instance; } void print(){cout << "hello";} ~A(){} private: static A instance; }; int main() { A a = A::getInstance(); a.print(); }
一般使用静态的单例类来实现