返回列表 發帖

清空 stringstream

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.     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 a;
  8.     string b="123",c="456",d,e;
  9.     a<<b;
  10.     cout<<a.str()<<endl;
  11.     a>>d;
  12.     cout<<d<<endl;
  13.     a.str("");
  14.     a.clear();
  15.     a<<c;
  16.     cout<<a.str()<<endl;
  17.     ss>>e;
  18.     cout<<e<<endl;     
  19.    
  20.     system("pause");     
  21.     return 0;   
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  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<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.    stringstream ss;
  8.    string str1="un",str2="unc",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<<"str3: "<<str3<<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

  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 king;
  8.     string str1="abc",str2="def",str3,str4;
  9.     king<<str1;
  10.     cout<<"king: "<<king.str()<<endl;
  11.     king>>str3;
  12.     cout<<"str3: "<<str3<<endl;
  13.     king.str("");
  14.     king.clear();
  15.     king<<str2;
  16.     cout<<"king: "<<king.str()<<endl;
  17.     king>>str4;
  18.     cout<<"str4: "<<str4<<endl;
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

返回列表