stringstream是 C++ 提供的另一个字串型的串流(stream)物件,和之前学过的iostream、fstream有类似的操作方式。要使用stringstream, 必须先加入这一行:
include
tringstream主要是用在將一个字符串分割,可以先用.clear( )以及.str( )將指定字串设定成一开始的內容,再用>>把个別的资料输出。
举个例子:
題目:输入的第一行有一个数字 N 代表接下來有 N 行资料,每一行资料里有不固定个数的整数(最多20个,每行最大200个字元),编程將每行的总和打印出來。
输入:
3
1 2 3
20 17 23 54 77 60
111 222 333 444 555 666 777 888 999
输出:
6
251
4995
#include
#include
#include
using namespace std;
int main()
{
string s;
stringstream ss;
int n;
cin >> n;
getline(cin, s); //读取换行
for (int i = 0; i < n; i++)
{
getline(cin, s);
ss.clear();
ss.str(s);
int sum = 0;
while (1)
{
int a;
ss >> a;
if(ss.fail())
break;
sum += a;
}
cout << sum << endl;
}
return 0;
}
使用stringstream简化类型转换
C++标准库中的
一个例子:
#include
int main()
{
int n = 10000;
char s[10];
sprintf(s, "%d", n);
//s中的内容为“10000”
//到目前为止看起来还不错。但是,对上面代码的一个微小的改变就会使程序发生错误
printf("%s\n", s);
sprintf(s, "%f", n);
//错误的格式化符
printf("%s\n", s);
return 0;
}
在这种情况下,由于错误地使用了 %f 格式化符来替代了%d。因此,s在调用完sprintf()后包含了一个不确定的字符串。要是能自动推导出正确的类型,那不是更好吗?
进入stringstream:
由于n和s的类型在编译期就确定了,所以编译器拥有足够的信息来判断需要哪些转换。
注意,
- string到int的转换
string result = "10000";
int n = 0;
stream << result;
stream >> n; //n等于10000
- 重复利用stringstream对象
如果你打算在多次转换中使用同一个stringstream对象,记住在每次转换前要使用clear()方法。
在多次转换中重复使用同一个stringstream(而不是每次都创建一个新的对象)对象最大的好处在于效率。stringstream对象的构造和析构函数通常是非常耗费CPU时间的。
- 在类型转换中使用模板
你可以轻松地定义函数模板来将一个任意的类型转换到特定的目标类型。例如,需要将各种数字值,如int、long、double等等转换成字符串,要使用以一个string类型和一个任意值t为参数的to_string()函数。to_string()函数将t转换为字符串并写入result中。使用str()成员函数来获取流内部缓冲的一份拷贝。
template
void to_string(string &result, const T &t)
{
ostringstream oss; //创建一个流
oss << t; //把值传递入流中
result = oss.str(); //获取转换后的字符并将其写入result
}
//这样,你就可以轻松地将多种数值转换成字符串了
to_string(s1, 10.5); //double到string
to_string(s2, 123); //int到string
to_string(s3, true); //bool到string
//可以更进一步定义一个通用的转换模板,用于任意类型之间的转换。函数模板convert()含有两个模板参数out_type和in_value,功能是将in_value值转换成out_type类型:
template
out_type convert(const in_value & t)
{
stringstream stream;
stream << t; //向流中传值
out_type result; //这里存储转换结果
stream >> result; //向result中写入值
return result;
}
测试代码:
#include
#include
#include
using namespace std;
template
void to_string(string &result, const T &t)
{
ostringstream oss;
oss << t;
result = oss.str();
}
template
out_type convert(const in_value & t)
{
stringstream stream;
stream << t;
out_type result;
stream >> result;
return result;
}
int main()
{
//to_string实例
string s1, s2, s3;
to_string(s1, 10.5); //double到string
to_string(s2, 123); //int到string
to_string(s3, true); //bool到string
cout << s1 << endl << s2 << endl << s3 << endl << endl;
//convert()例子
double d;
string salary;
string s = "12.56";
d = convert (s); //d等于12.56
salary = convert (9000.0); //salary等于"9000"
cout << d << endl << salary << endl;
return 0;
}
- 结论
在过去留下来的程序代码和纯粹的C程序中,传统的
- 使用误区
如果stringstream使用不当,当心内存出问题。试试下面的代码,运行程序前打开任务管理器,看看内存变化。
复制代码,把 stream.str(""); 那一行的注释去掉,再运行程序,内存就正常了。
看来stringstream似乎不打算主动释放内存( 或许是为了提高效率 ),但如果你要在程序中用同一个流,反复读写大量的数据,将会造成大量的内存消耗,因此这时候,需要适时地清除一下缓冲 ( 用 stream.str("") )。
另外不要企图用 stream.str().resize(0) 或 stream.str().clear() 来清除缓冲,使用它们似乎可以让stringstream的内存消耗不要增长得那么快,但仍然不能达到清除stringstream缓冲的效果(做个实验就知道了,内存的消耗还在缓慢的增长)
- clear()
这个名字让很多人想当然地认为它会清除流的内容。
实际上它并不清空任何内容,它只是重置了流的状态标志。 - str("")
清空stringstream的缓冲,每次循环内存消耗将不再增加
多行重复输入,且分别打印时,最好同时使用他们
#include
#include
using namespace std;
int main()
{
std::stringstream stream;
string str;
while(1)
{
stream.clear();
//去掉下面这行注释。
//stream.str("");
stream << "you see see you";
stream >> str;
// 去掉下面这行注释,看看每次循环,你的内存消耗会增加多少
//cout << "Size of stream = " << stream.str().length() << endl;
}
return 0;
}
转自https://blog.csdn.net/sunshineacm/article/details/78068987
多行不定长n*n二维数组输入,并可求出n
稍加修改也可做m*n的矩阵录入
#include
#include
#include
#include
using namespace std;
int main()
{
string input;
int num;
stringstream ss;
vector> a(10);
int n=0;
while(getline(cin,input))
{
ss.clear();
ss.str("");
ss<end"<> num) a[n].push_back(num);
for (int i = 0; i < a[n].size(); i++) cout << "a[" << i << "] = " << a[n][i] << " ";
n++;
cout << endl;
}
for(int i=0;i