Study/C++

· Study/C++
고급 저장을 사용해서 '유니코드(서명 있는 UTF-8) - 코드 페이지 65001'으로 인코딩하면 해결된다.
· Study/C++
#pragma once template class Singleton { private: static T* m_pThis; protected: Singleton() { }; virtual ~Singleton() { }; public: static T* GetInstance() { if (m_pThis == NULL) { m_pThis = new T; } return m_pThis; } static void DestroyInstace() { if (m_pThis) { delete m_pThis; m_pThis = NULL; } } }; template T* Singleton::m_pThis = 0; 1. 오류 싱글턴에 사용하기 위한 헤더를 만들 때 NULL을 체크하는 부분에서 NULL 식별자를 찾을 수 없다..
한돌이
'Study/C++' 카테고리의 글 목록