打印vector<wstring>数据、
时间: 2023-12-11 12:02:17 浏览: 82
可以使用以下代码打印一个 `vector<wstring>` 类型的数据:
```c++
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main() {
vector<wstring> vec = {L"你好", L"世界", L"!"};
for (wstring str : vec) {
wcout << str << endl;
}
return 0;
}
```
输出结果为:
```
你好
世界
!
```
需要注意的是,因为是 `wstring` 类型,所以需要使用 `wcout` 来输出。另外,使用循环遍历 `vector` 中的每个元素,然后使用 `wcout` 输出即可。
阅读全文