标签:include AC using space 实现 class pac style std
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
标签:include AC using space 实现 class pac style std
原文地址:https://www.cnblogs.com/xiaoxue126/p/8969021.html