摘要: //单例类定义#define CLASS_INSTANCE_DEF(className) \public: \ static className* GetInstance() \ { \ static className m_Instance; \ return &m_Instance; \ } \ 阅读全文
posted @ 2020-10-18 14:24 龙马8586 阅读(123) 评论(0) 推荐(0) 编辑