標題:
stringstream 字串串流
[打印本頁]
作者:
陳品肇
時間:
2019-5-4 15:31
標題:
stringstream 字串串流
試利用 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;
}
複製代碼
作者:
陳柏霖
時間:
2019-5-4 16:19
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string tim1="hello",
tim2="world";
ss<<tim1<<tim2;
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string tim1="hello",
tim2="world",
tim3;
ss<<tim1<<tim2;
ss>>tim3;
cout<<tim3<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚詩澐
時間:
2019-5-4 16:20
本帖最後由 譚詩澐 於 2019-5-4 16:21 編輯
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="hello";
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="abcdefg";
string str2="ㄅㄆㄇㄈ";
string str;
ss<<str1<<str2<<"...";
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-5-4 16:23
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="hello";
string str2="world";
string str3;
ss<<str1<<str2<<"~~~~!!!";
ss>>str3;
cout<<str3<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="hello";
string str2="world";
ss<<str1<<str2<<"~~~~!!!";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-5-4 16:24
#include<iostream>
#include<sstream>
#include<cstdlib>
using namespace std;
int main()
{
stringstream ss;
string str1="hello";
string str2="world";
string str;
ss<<str1<<str2<<"...";
ss>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="hello";
string str2="world";
ss<<str1<<str2<<"!!!!!";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-5-4 16:28
#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;
}
複製代碼
作者:
戴唯陞
時間:
2019-5-4 16:29
#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;
}
複製代碼
作者:
戴偉宸
時間:
2019-5-4 16:30
本帖最後由 戴偉宸 於 2019-5-4 16:40 編輯
#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;
}
複製代碼
作者:
戴唯陞
時間:
2019-5-4 16:40
#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;
}
[code]#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;
}
複製代碼
作者:
戴安利
時間:
2019-5-10 20:00
#include<iostream>
#include<cstdlib>
#include<sstream>
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;
}
複製代碼
作者:
戴安利
時間:
2019-5-10 20:02
標題:
RE: stringstream 字串串流
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
string str;
ss<<str1<<str2<<"...";
cout<<ss.str()<<endl;;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2