2015年6月28日

摘要: 关于学习 《深入应用c++11》的代码笔记:c++11之前是这么实现的templateclass Singleton{public: static T* Instance(){ if (m_pInstance == nullptr) m_pInstance = new T(); return... 阅读全文
posted @ 2015-06-28 22:56 itdef 阅读(1112) 评论(0) 推荐(0)

导航