摘要: 最简单的单例模式 1 //singelton.h文件 2 class CSingelton 3 { 4 public: 5 static CSingelton* getSingelton(); 7 private: 8 CSingelton(); 9 CSingelton(const CSingel 阅读全文
posted @ 2020-02-18 15:03 peterliang 阅读(145) 评论(0) 推荐(0) 编辑