標題:
stringstream 字串串流
[打印本頁]
作者:
tonyh
時間:
2015-12-26 11:13
標題:
stringstream 字串串流
本帖最後由 tonyh 於 2016-7-14 11:37 編輯
試利用 stringstream 型別, 將多個字串串起來,
再利用 str() 函式將物件中的字串帶出來.
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
ss<<str1<<str2<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
string str;
ss<<str1<<str2<<"...";
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-12-26 11:26
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1 = "123" ;
string str2 = "木頭人" ;
ss<<str1<<str2<<"..."<<endl;
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-12-26 11:39
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="畢普滴";
string str2="普畢哇";
ss<<str1<<str2<<"153";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2016-1-15 17:12
本帖最後由 梁和雋 於 2016-1-15 17:13 編輯
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream str;
string str1="123";
string str2="456";
str<<str1<<str2;
cout<<str.str()<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2