返回列表 發帖

清空 stringstream

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

ss.str("");
ss.clear();

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123",str2="456",str3,str4;
  9.     ss<<str1;
  10.     cout<<"ss: "<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<"str3: "<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<"ss: "<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<"str4: "<<str4<<endl;
  19.     system("pause");     
  20.     return 0;   
  21. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123", str2="456", str3, str4;
  9.     ss<<str1;
  10.     cout<<"ss: "<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<"str3: "<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<"ss: "<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<"str4: "<<str4<<endl;
  19.    
  20.     system("pause");     
  21.     return 0;   
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123",str2="456",str3,str4;
  9.     ss<<str1;
  10.     cout<<"ss: "<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<"str3: "<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<"ss: "<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<"str4: "<<str4<<endl;
  19.     system("pause");     
  20.     return 0;   
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123",str2="456",str3,str4;
  9.     ss<<str1;
  10.     cout<<"ss: "<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<"str3: "<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<"ss: "<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<"str4: "<<str4<<endl;
  19.     system("pause");     
  20.     return 0;   
  21. }
複製代碼

TOP

本帖最後由 蕭澧邦 於 2017-9-9 15:23 編輯
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123",str2="456",str3,str4;
  9.     ss<<str1;
  10.     cout<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<str4<<endl;
  19.     system("pause");     
  20.     return 0;   
  21. }
複製代碼

TOP

本帖最後由 黃宥鈞 於 2017-9-9 15:23 編輯
  1. #include<iostream>
  2. #include<sstream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="123",str2="456",str3,str4;
  9.     ss<<str1;
  10.     cout<<ss.str()<<endl;
  11.     ss>>str3;
  12.     cout<<str3<<endl;
  13.     ss.str("");
  14.     ss.clear();
  15.     ss<<str2;
  16.     cout<<ss.str()<<endl;
  17.     ss>>str4;
  18.     cout<<str4<<endl;
  19.     system("pause");     
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表