下面小编就给大家带来一个c中stringstream的用法和例子,我觉得边肖挺好的。我现在就分享给你,给你一个参考。来和边肖一起看看吧。
之前在leetcode中string和int的转换中使用了Istringstream。现在大致总结一下使用方法和测试案例。
介绍:C引入了三个类:ostringstream、istringstream和stringstream。要使用它们来创建对象,必须包含头文件sstream.h
Istringstream类用于执行C风格流的输入操作。
Ostringstream类用于执行C风格流的输出操作。
String类也可以支持C-stringstream的输入输出操作。
下图详细描述了几种类之间的继承关系:
Istringstream由string对象构造,从string对象中读取字符。
Ostringstream也是由string对象构造的,字符被插入到string对象中。
String用于C风格字符串的输入和输出。
代码测试:
#includeiostream
#包含流
使用命名空间stdpre name=' code ' class=' CPP ' int main(){
字符串测试='-123 9.87欢迎来到,989,测试!';
istringstream iss//istringstream提供读取字符串的功能。
iss.str(测试);//将字符串类型的测试复制到iss并返回void
字符串s;
“Cout”按空格读取字符串:“endl
while (iss s){
cout s endl//按空格读取字符串
}
cout ' * * * * * * * * * * * * * * * * * * * * * ' endl
istringstream strm(测试);
//创建存储测试副本的stringstream对象
int I;
浮动f;
char c;
char buff[1024];
strm I;
cout ' read int type:' I endl;
strm f;
“Cout”读取浮点类型:“f endl
strm c;
“Cout”读取char类型:“c endl
strm缓冲区;
“Cout”读取缓冲区类型:“buff endl
strm.ignore(100,',');
int j;
strm j;
Cout' ignore ',' read int type:' j endl;
系统(“暂停”);
返回0;
}
输出:
总结:
1)在istringstream类中,构造字符串流时,空格会成为字符串参数的内部边界;
2)istring stream类可用作将字符串转换为各种类型的方法。
3)忽略函数参数:要读取的字符串的最大长度和要忽略的字符。
测试:
int main(){
ostringstream out
out . put(' t ');//插入字符
out . put(' e ');
out“ST”;
string RES=out . str();//提取字符串;
cout res endl
系统(“暂停”);
返回0;
}
输出:测试字符串;
注意:如果一开始初始化ostringstream,比如ostringstream out('test '),那么put或者when的字符串会覆盖原来的字符,超出的部分会在原来的基础上增加。
同样的,string可以用来转换字符串和不同的类型。
以上就是边肖带来的所有C中stringstream的用法和例子。希望大家多多支持~
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。