stringstream使用小结

Posted savennist

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stringstream使用小结相关的知识,希望对你有一定的参考价值。

1.头文件:#include<sstream>

2.stringstream是C++提供的串流(stream)物件

3、clear()重置流的标志状态;str()清空流的内存缓冲,重复使用内存消耗不再增加!

 1 #include<string>
 2 #include<sstream>
 3 #include<iostream>
 4 using namespace std;
 5 int main()
 6 {
 7     stringstream sstream;//定义流
 8     sstream << "first" << " " << "string,";
 9     sstream << " second string";
10     cout << "strResult is: " << sstream.str() << endl;//str()方法能够将流转换为string,但这不影响原sstream
11     sstream.str("");//清空内存
12     sstream << "third string";
13     cout << "After clear, strResult is: " << sstream.str() << endl;
14     return 0;
15 }

以上是关于stringstream使用小结的主要内容,如果未能解决你的问题,请参考以下文章

C++ 从 unsigned char* 到 stringstream:分段错误(核心转储)错误 [关闭]

使用 stringstream 浮动的字符串

如何使用 stringstream 在 C++ 中将字符串转换为双精度值 [关闭]

stringstream操纵string小总结

如何使用javascript从stringstream内容azure blob存储中下载png文件

使用 stringstream::str() 更新后 C++ stringstream 无法正常工作