数据类型转换

问题描述

如何将C++里的int类型转换为string类型

解决方案

使用sstream库中的stringstream

CODE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <sstream>
using namespace std;

int main()
{
int a=1000;
string str;

stringstream ss;
ss<<a;
ss>>str;

cout<<a<<endl;
cout<<str<<endl;

return 0;
}
eternity6666 wechat
欢迎您扫一扫上面的微信公众号,订阅我的博客!
Donate comment here