摘要: 单例模板#ifndef _SINGLETON_H_#define _SINGLETON_H_templateclass CSingleT{ public: static T * Instance() { if (!ms_pObject) { ms_pObject = new T;} re... 阅读全文
posted @ 2014-07-02 10:49 一个橙子~ 阅读(161) 评论(0) 推荐(0) 编辑