标签:bsp std ber src ret inf 技术 ext text
使用stringstream:(stringstream 可以用于各种数据类型之间的转换)
1 #include <iostream> 2 #include <sstream> 3 using namespace std; 4 int main() 5 { 6 int number; 7 string text="123"; 8 stringstream ss; 9 ss<<text; 10 ss>>number; 11 cout<<number; 12 return 0; 13 }
int->string
#include <iostream> #include <sstream> using namespace std; int main() { int number=123; string text; stringstream ss; ss<<number; ss>>text; cout<<text; return 0; }
运行结果和上面一样
标签:bsp std ber src ret inf 技术 ext text
原文地址:https://www.cnblogs.com/cs0915/p/12781383.html