Board logo

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

作者: 方浩葦    時間: 2024-4-19 12:20     標題: stringstream 字串串流 (一)

本帖最後由 方浩葦 於 2024-4-20 11:53 編輯

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


本帖隱藏的內容需要積分高於 1 才可瀏覽

作者: 蔡岑昕    時間: 2024-4-20 14:38

  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.    
  16.    
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 劉秉昕    時間: 2024-4-20 14:39

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

作者: 呂宗晉    時間: 2024-4-20 14:43

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

作者: 蔡宇庭    時間: 2024-4-20 14: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();

  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 高嘉怡    時間: 2024-4-20 14: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. }
複製代碼

作者: 蔡宇庭    時間: 2024-4-20 14: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. }
複製代碼

作者: 陳奕睿    時間: 2024-4-20 14:47

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





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