- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- #include<typeinfo>
- using namespace std;
- int main()
- {
- stringstream s;
- int a=123;
- double b=456.789;
- float c;
- string d;
- s<<a;
- s>>c;
- cout<<c;
- s.str("");
- s.clear();
- s<<b;
- s>>d;
- cout<<d;
- cout<<typeid(a).name()<<endl;
- cout<<typeid(b).name()<<endl;
- cout<<typeid(c).name()<<endl;
- cout<<typeid(d).name()<<endl;
- }
複製代碼 |