標題:
stringstream 字串串流 (一)
[打印本頁]
作者:
陳育霖
時間:
2024-8-2 12:01
標題:
stringstream 字串串流 (一)
試利用 stringstream 型別,將多個字串串起來,
再利用 str() 函式將物件中的字串帶出來。
#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;
}
複製代碼
#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;
}
複製代碼
作者:
梁云睿
時間:
2024-8-3 21:01
此帖僅作者可見
作者:
鄭登穎
時間:
2024-8-3 21:02
此帖僅作者可見
作者:
陳品瑞
時間:
2024-8-3 21:05
此帖僅作者可見
作者:
詠綺
時間:
2024-8-3 21:06
此帖僅作者可見
作者:
黃子瑞
時間:
2024-8-4 10:05
此帖僅作者可見
作者:
蘇巳權
時間:
2024-8-4 20:57
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2