11 2023 档案

摘要: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 阅读(41) 评论(0) 推荐(0)