- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- using namespace std;
- int main()
- {
- stringstream s;
- int a=123;
- double b=456.789;
- float c;
- string d;
- s<<a;
- s>>c;
- cout<<"a="<<a<<",型態為:"<<typeid(a).name()<<endl;
- cout<<"c="<<c<<",型態為:"<<typeid(c).name()<<endl;
- s.clear();
- s<<b;
- s>>d;
- cout<<"b="<<b<<",型態為:"<<typeid(b).name()<<endl;
- cout<<"d="<<d<<",型態為:"<<typeid(d).name()<<endl;
- system("pause");
- return 0;
- }
複製代碼 |