CString转换成string
时间: 2023-06-01 16:05:07 浏览: 141
字符串转换
可以使用CString的GetBuffer和ReleaseBuffer函数,如下所示:
CString str = "hello";
char* cstr = str.GetBuffer(str.GetLength() + 1);
string s = cstr;
str.ReleaseBuffer();
这样就可以将CString类型的字符串转换成string类型的字符串。
阅读全文