c++ 单例模式

class C{
private:
   C();
public:
   static C* get_instance();
}

待测

原文地址:https://www.cnblogs.com/i80386/p/4938462.html