码迷,mamicode.com
首页 > 其他好文 > 详细

stringstream使用小结

时间:2020-01-22 22:18:28      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:这不   c++   clu   code   ring   pre   pac   重复   str   

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++   clu   code   ring   pre   pac   重复   str   

原文地址:https://www.cnblogs.com/savennist/p/12229569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!