码迷,mamicode.com
首页 > 编程语言 > 详细

C++字符流

时间:2016-11-12 13:56:47      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:pre   style   src   ring   char   copy   class   png   trend   

 1 #include <iostream>
 2 #include <string>
 3 #include <sstream>
 4 #include <iterator>
 5 #include <algorithm>
 6 using namespace std;
 7 
 8 int main(int , char**)
 9 {
10     std::string str("a b c 123 !");
11     cout<<str<<endl;
12 
13     stringstream ss(str);
14     istreambuf_iterator<char> itrBegin(ss),itrEnd;
15     copy(itrBegin, itrEnd, ostream_iterator<char>(cout));
16 
17     return 0;
18 
19 }

技术分享

 

C++字符流

标签:pre   style   src   ring   char   copy   class   png   trend   

原文地址:http://www.cnblogs.com/CalmReason/p/6056513.html

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