Board logo

標題: stringstream 字串串流 [打印本頁]

作者: tonyh    時間: 2015-12-26 11:13     標題: stringstream 字串串流

本帖最後由 tonyh 於 2016-7-14 11:37 編輯

試利用 stringstream 型別, 將多個字串串起來,
再利用 str() 函式將物件中的字串帶出來.
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     ss<<str1<<str2<<"...";
  11.     cout<<ss.str()<<endl;
  12.     system("pause");     
  13.     return 0;   
  14. }
複製代碼
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     string str;
  11.     ss<<str1<<str2<<"...";
  12.     ss>>str;
  13.     cout<<str<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼

作者: 李知易    時間: 2015-12-26 11:26

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1 = "123" ;
  9.     string str2 = "木頭人" ;
  10.     ss<<str1<<str2<<"..."<<endl;
  11.     cout<<ss.str()<<endl;
  12.     system("pause");     
  13.     return 0;   
  14. }
複製代碼

作者: 洪振庭    時間: 2015-12-26 11:39

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="畢普滴";
  9.     string str2="普畢哇";
  10.     ss<<str1<<str2<<"153";
  11.     cout<<ss.str()<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 梁和雋    時間: 2016-1-15 17:12

本帖最後由 梁和雋 於 2016-1-15 17:13 編輯
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream str;
  8.     string str1="123";
  9.     string str2="456";
  10.     str<<str1<<str2;
  11.     cout<<str.str()<<endl;
  12.     system("pause");     
  13.     return 0;   
  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2