Board logo

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

作者: 陳品肇    時間: 2019-5-4 15:31     標題: stringstream 字串串流

試利用 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. }
複製代碼

作者: 陳柏霖    時間: 2019-5-4 16:19

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string tim1="hello",
  9.            tim2="world";
  10.     ss<<tim1<<tim2;
  11.     cout<<ss.str()<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string tim1="hello",
  9.            tim2="world",
  10.            tim3;
  11.     ss<<tim1<<tim2;
  12.     ss>>tim3;
  13.     cout<<tim3<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 譚詩澐    時間: 2019-5-4 16:20

本帖最後由 譚詩澐 於 2019-5-4 16:21 編輯
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="hello";
  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="abcdefg";
  9.     string str2="ㄅㄆㄇㄈ";
  10.     string str;
  11.     ss<<str1<<str2<<"...";
  12.     ss>>str;
  13.     cout<<str<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼

作者: 蔡季庭    時間: 2019-5-4 16:23

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

作者: 蔡依宸    時間: 2019-5-4 16:24

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

作者: 戴偉宸    時間: 2019-5-4 16:28

  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. }
複製代碼

作者: 戴唯陞    時間: 2019-5-4 16:29

  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. }
複製代碼

作者: 戴偉宸    時間: 2019-5-4 16:30

本帖最後由 戴偉宸 於 2019-5-4 16:40 編輯
  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. }
複製代碼

作者: 戴唯陞    時間: 2019-5-4 16:40

  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. }



  15. [code]#include<iostream>
  16. #include<sstream>
  17. #include<cstdlib>
  18. using namespace std;
  19. int main()
  20. {
  21.     stringstream ss;
  22.     string str1="abc";
  23.     string str2="狗咬豬";
  24.     string str;
  25.     ss<<str1<<str2<<"...";
  26.     ss>>str;
  27.     cout<<str<<endl;
  28.     system("pause");     
  29.     return 0;   
  30. }
複製代碼

作者: 戴安利    時間: 2019-5-10 20:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  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.       
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼

作者: 戴安利    時間: 2019-5-10 20:02     標題: RE: stringstream 字串串流

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  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.    cout<<ss.str()<<endl;;
  13.       
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼





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