C++线程安全的单例模式
摘要:
1、在GCC4.0之后的环境下: #include <iostream> using namespace std;template <typename T>class Singleton{ public: static T& getInstance() {//使用局部静态变量的缺陷就是创建和析构时的 阅读全文
posted @ 2016-10-18 20:30 Joker_88 阅读(1851) 评论(0) 推荐(0) 编辑