CString 可能是unicode编码(CString通过宏来确定到底是CStringA还是CStringW),因此应该先将之转化为mbcs编码,也就是CStringA. CString s = _T("abc"); std::string ...
確定! 回上一頁