摘要: 一、单例模式 类图关系: #include <iostream> using namespace std; class Singleton{ public: static Singleton* getInstance() { if(_ins == NULL) _ins = new Singleton 阅读全文
posted @ 2022-04-12 00:05 mengchao 阅读(103) 评论(0) 推荐(0) 编辑