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

stringstream 使用方法

时间:2015-03-05 12:39:52      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

 

C++中的stringstream是专门用来处理字符串流的,可以按顺序将string或int都拼接起来,而不用把int转换为string格式,使用方法如下:

 

#include <string>
#include <strstream>
#include <sstream>

stringstream strstream;
std::string s;
std::string s1 = "hello";
int d = 13;
strstream.str(""); strstream.clear();
strstream << s1 << "world" << d << "!"; strstream >> s;

 

stringstream 使用方法

标签:

原文地址:http://www.cnblogs.com/grandyang/p/4315076.html

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