std::wstring格式化
时间: 2023-11-17 15:06:34 浏览: 204
VC++按行读取txt.zip
3星 · 编辑精心推荐
可以使用std::wstringstream来格式化std::wstring。以下是一个简单的例子:
```cpp
#include <iostream>
#include <sstream>
#include <string>
int main() {
std::wstring name = L"张三";
int age = 18;
double height = 1.75;
std::wstringstream ss;
ss << L"姓名:" << name << L",年龄:" << age << L"岁,身高:" << height << L"米。";
std::wstring result = ss.str();
std::wcout << result << std::endl;
return 0;
}
```
输出结果为:
```
姓名:张三,年龄:18岁,身高:1.75米。
```
阅读全文