stringstream 类型转换
Posted 小雪SS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stringstream 类型转换相关的知识,希望对你有一定的参考价值。
stringstream可以吞下不同的类型,然后吐出不同的类型。
这样可以实现int,string,double等类型的转换
1 #include<sstream> 2 3 using namespace std; 4 5 int main() 6 { 7 int x; 8 stringstream temp; 9 temp << x;//吞入被转换的类型 10 string s1 = temp .str();//吐出需要的类型 11 } 12
以上是关于stringstream 类型转换的主要内容,如果未能解决你的问题,请参考以下文章