摘要: c++11通常单例模式如下: template <typename T> class Singleton { protected: Singleton() = default; Singleton(const Singleton<T>&) = delete; Singleton& operator= 阅读全文
posted @ 2023-09-25 11:55 白伟碧一些小心得 阅读(17) 评论(0) 推荐(0) 编辑