c++11 實現單例

方法一: class Instance2{ public: static Instance2& GetInstance() { static Instance2 ins; return ins; } private: Instance2(){}; }; 方法二(基於C++11): template<typename T> class
相關文章
相關標籤/搜索