cstirng转string
时间: 2023-12-28 22:24:00 浏览: 69
vc Variant类型转换成CString函数
可以使用CString的GetString()方法将CString转换为LPCTSTR类型,然后再将LPCTSTR类型转换为std::string类型。具体实现如下所示:
```cpp
CString cstr = "Hello World!";
LPCTSTR lpStr = (LPCTSTR)cstr;
std::string str(CW2A(lpStr));
```
其中,CW2A是ATL库中的一个宏,用于将UNICODE字符串转换为ANSI字符串。需要包含头文件atlconv.h。
阅读全文