CString与string相互转换
CString转string 例子:
CString strMfc = "test";std::string strStr;strStr = strMfc.GetBuffer(0);
string转CString 例子:
CString strMfc;string strStr = "test";strMfc = strStr.c_str();
请选中你要保存的内容,粘贴到此文本框
责任编辑:本年度最佳幽默杂文:我儿没儿!
CString转string 例子:
CString strMfc = "test";std::string strStr;strStr = strMfc.GetBuffer(0);
string转CString 例子:
CString strMfc;string strStr = "test";strMfc = strStr.c_str();
请选中你要保存的内容,粘贴到此文本框