Unicode 下 Cstring 转 string

方法一:    

 CString   cstr(_T( "MIT")); 
 string str(CW2A((LPCTSTR)cstr));

方法二:

CString cstr(_T( "MIT"));

USES_CONVERSION;

std::string str=W2A(cstr);

 

你可能感兴趣的:(Unicode 下 Cstring 转 string)