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);
posted on 2013-02-07 16:48  qinfengxiaoyue  阅读(656)  评论(0编辑  收藏  举报