string与int之间的转换
Posted cs0915
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string与int之间的转换相关的知识,希望对你有一定的参考价值。
使用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; }
运行结果和上面一样
以上是关于string与int之间的转换的主要内容,如果未能解决你的问题,请参考以下文章
Java基础基本数据类型包装类int与String 之间的相互转换