csting and sting 互转

来源:互联网 发布:王国纪元mac电脑版 编辑:程序博客网 时间:2024/05/21 21:43
CString->std::string 例子:
CString strMfc=“test“;
std::string strStl;
strStl=strMfc.GetBuffer(0);
std::string->CString  例子:
CString strMfc;
std::string strStl=“test“;
strMfc=strStl.c_str();
0 0
原创粉丝点击