CString与 string 类型 互转
CString 转换为 string
unicode 情况下面
CString m_strCode = _T("sh600519");
USES_CONVERSION;
std::string str_code(T2A(m_strCode));
cout << str_code <<endl;
//CA2T含义
//C:convert,转换的意思
//A:ANSI字符串,也就是Muti-Byte
//2:to
//T:中间类型,如果定义了_UNICODE,则T表示W;如果定义了_MBCS,则T表示A
//W:宽字符串,也就是UNICODE