標題:
stringstream 字串串流 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-3-22 19:18
標題:
stringstream 字串串流 (一)
本帖最後由 鄭繼威 於 2023-3-22 20:17 編輯
試利用 stringstream 型別,
將多個字串串起來
,
再利用 str() 函式將物件中的字串帶出來。
法1
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
法2
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"...";
string str;
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-22 20:09
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
stringstream s;
s<<str1<<str2<<a<<b<<"...";
cout<<s.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-22 20:10
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream x;
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
x<<str1<<str2<<a<<b<<"...";
cout<<x.str()<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2