标签:nbsp cout 开头 一个 div 相互 -- 相互转换 bsp
string和int的相互转换
1 istringstream is("12"); //构造输入字符串流,流的内容初始化为“12”的字符串 2 int i; 3 is >> i; //从is流中读入一个int整数存入i中
1 int aa = 30; 2 stringstream ss; 3 ss<<aa; 4 string s1 = ss.str(); 5 cout<<s1<<endl; // 30
标签:nbsp cout 开头 一个 div 相互 -- 相互转换 bsp
原文地址:https://www.cnblogs.com/chusiyong/p/11315711.html