Board logo

標題: 清空 stringstream [打印本頁]

作者: 陳品肇    時間: 2019-5-4 15:32     標題: 清空 stringstream

ss.str("");
ss.clear();
[attach]6412[/attach]
  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. }
複製代碼

作者: 陳柏霖    時間: 2019-5-4 17:20

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

作者: 譚詩澐    時間: 2019-5-4 17:20

  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.     ss>>str3;
  11.     cout<<ss.str()<<endl;
  12.     ss.str("");
  13.     ss.clear();
  14.     ss<<str2;
  15.     ss>>str4;
  16.     cout<<ss.str()<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 蔡依宸    時間: 2019-5-4 17: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. }
複製代碼

作者: 戴唯陞    時間: 2019-5-4 17:25

  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.    
  11.     cout<<"ss: "<<ss.str()<<endl;
  12.     ss>>str3;
  13.    
  14.     cout<<"str3: "<<str3<<endl;
  15.     ss.str("");
  16.     ss.clear();
  17.     ss<<str2;
  18.    
  19.     cout<<"ss: "<<ss.str()<<endl;
  20.     ss>>str4;
  21.     cout<<"str4: "<<str4<<endl;

  22.    
複製代碼

作者: 蔡季庭    時間: 2019-5-4 17:25

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

作者: 戴偉宸    時間: 2019-5-4 17:26

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





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