CString与string相互转换
Posted 独孤九戒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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, string, char *之间的相互转换(转)