摘要: 1、使用模板实现一个单例模式,如下 #include <iostream> #include <memory> #include <mutex> template<typename T> class Singleton { public: static T& instance() { static 阅读全文
posted @ 2023-05-06 14:56 非法关键字 阅读(157) 评论(0) 推荐(0) 编辑