单例模式与懒加载方式。
单例模式在C++类的设计模式中很普遍。定义#define ImplementInstance(cls)\public:\ static cls* cls::GetInstance()\ {\ static cls* m_pInstance = NULL; \ if (!m_pInstance)\ {\ m_pInstance = new_nothrow cls; ...