摘要: 设计模式之单例模式 先看代码 class Singleton{ public: //获取实例接口 static Singleton * getInstance(){ if (m_instance == nullptr){ m_instance = new Singleton(); } return 阅读全文
posted @ 2022-03-13 00:01 曹操是个好同志 阅读(17) 评论(0) 推荐(0) 编辑