wstring怎么转换为Cstring
时间: 2024-03-03 10:23:02 浏览: 108
wstring转string
5星 · 资源好评率100%
可以使用CString的构造函数将wstring转换为CString:
```cpp
std::wstring wstr = L"Hello, world!";
CString cstr(wstr.c_str());
```
或者使用CString的Format函数将wstring转换为CString:
```cpp
std::wstring wstr = L"Hello, world!";
CString cstr;
cstr.Format(L"%s", wstr.c_str());
```
阅读全文