class Singleton: { // 其它成员 public: static Singleton * GetInstance(){ static Singleton instance; return &instance; } private: Singleton(){}; }