C++單例模式與多線程安全

用代碼實現以下:web class Singleton { public: static Singleton* CreateObj() { if (m_pInstance == NULL) { m_pInstance = new Singleton(); } return m_pInstance; } void test() { cout << "訪問單例類的接口。"
相關文章
相關標籤/搜索