返回列表 發帖

stringstream 字串串流

本帖最後由 tonyh 於 2020-5-29 14:54 編輯

試利用 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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

本帖最後由 黃宥鈞 於 2017-9-9 14:03 編輯
  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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

返回列表