- #include<iostream>
- #include<cstdlib>
- #include<sstream>
- #include<typeinfo>
- using namespace std;
- int main()
- {
- //變數型態 變數名稱
- stringstream ss;
- int a=123;
- double b=456.789;
- float c;
- string d;
-
- ss<<a; //將a的東西丟到ss
- ss>>c; //將ss的東西丟到c
- cout<<"a="<<a<<",型態為:"<<typeid(a).name()<<endl;
- cout<<"c="<<c<<",型態為:"<<typeid(c).name()<<endl;
-
- ss.clear(); //重複使用前,需先初始化
-
- ss<<b; //將b的東西丟到ss
- ss>>d; //將ss的東西丟到d
- cout<<"b="<<b<<",型態為:"<<typeid(b).name()<<endl;
- cout<<"d="<<d<<",型態為:"<<typeid(d).name()<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |