Board logo

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

作者: 鄭繼威    時間: 2022-7-22 17:24     標題: stringstream 字串串流 (一)

本帖最後由 鄭繼威 於 2022-7-22 17:29 編輯

試利用 stringstream 型別,將多個字串串起來,
再利用 str() 函式將物件中的字串帶出來。

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.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="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     string str;
  14.     ss>>str;
  15.     cout<<str<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 高昀昊    時間: 2022-7-23 11:42

  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="ABC";
  10.     int a=2;
  11.     float b=3.14;
  12.     ss<<str1<<str2<<a<<b;
  13.     cout<<ss.str()<<endl;
  14. }
複製代碼

作者: 柳侑辰    時間: 2022-7-23 11:45

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 鍾易澄    時間: 2022-7-23 11:46

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.    
  15.      system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 高鋐鈞    時間: 2022-7-23 11:46

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b;
  13.     cout<<ss.str()<<endl;
  14.     system("pause");     
  15.     return 0;   
  16. }
複製代碼

作者: 許馹東    時間: 2022-7-23 11:48

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

作者: 許宸瑀    時間: 2022-7-23 11:50

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 孫子傑    時間: 2022-7-23 11:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string fr="azsdsad";
  9.     string sx="....rtrsbt";
  10.     int jf=23123;
  11.     float fg=3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664;
  12.     ss<<fr<<sx<<jf<<fg<<"....";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 郭博鈞    時間: 2022-7-23 12:03

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 田家齊    時間: 2022-7-30 09:31

  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.      int a=12;
  11.      float b=3.456;
  12.      ss<<str1<<str2<<a<<b<<"...";
  13.      cout<<ss.str()<<endl;
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 曾善勤    時間: 2022-7-30 09:33

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 田家齊    時間: 2022-7-30 09:41

  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.      int a=12;
  11.      float b=3.456;
  12.      ss<<str1<<str2<<a<<b<<"...";
  13.      string str ;
  14.      ss>>str;
  15.      cout<<str<<endl;
  16.    system("pause");
  17.    return 0;
  18. }
複製代碼

作者: 曾善勤    時間: 2022-7-30 09:42

  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.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     string str;
  14.     ss>>str;
  15.     cout<<str<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼





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