摘要: template<typename T> class Singleton { public: static T& getInstance() { static T t; return t; } Singleton(const Singleton&) = delete; Singleton& oper 阅读全文
posted @ 2023-11-27 11:18 penuel 阅读(7) 评论(0) 推荐(0) 编辑