CString(ANSI/Unicode)与string/wstring的安全转换

 

CString strSrc("123");

CStringA strSrcA(strSrc);

CStringW strSrcW(strSrc);

const char* p1 = strSrcA;

const WCHAR* p2 = strSrcW;

string strDesA((LPCSTR)strSrcA);

wstring strDesW((LPCWSTR)strSrcW);

你可能感兴趣的:(unicode)