会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
非法关键字
http://www.cnblogs.com/linxmouse/
首页
管理
2023年5月6日
使用c++11实现泛型单例的思考
摘要: 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)
编辑