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

C++: I/O流详解(三)——串流

时间:2017-11-01 22:54:48      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:输入   输出   变量类型   names   out   i/o   iostream   构造   pre   

一、串流

串流类是 ios 中的派生类

C++的串流对象可以连接string对象或字符串

串流提取数据时对字符串按变量类型解释;插入数据时把类型 数据转换成字符串

串流I/O具有格式化功能

例:

 1 #include <iostream>
 2 #include <sstream>
 3 #include <string>
 4 #include <strstream>
 5 
 6 using namespace std;
 7 //?什么鬼? 
 8 /*从输入串流对象提取数据 
 9 int main(){
10     string testStr("Input test 256*0.5");
11     string s1, s2, s3;
12     double x, y;
13     istringstream input(testStr); //用string对象构造串流对象
14     input>> s1>> s2>> x>> s3>> y;
15     cout<< s1<< ends<< s2<< ends<< x<< s3<< y<< "="<< x*y<< endl;
16     return 0;
17 }
18 */
19 
20 //向输出串流对象插入数据
21 /*
22 int main(){
23     ostringstream Output;
24     double x, y;
25     cout<< "Input x:";
26     cin>> x;
27     cout<< "Input y:";
28     cin>> y;
29     Output<<x<<"*"<<y<<"="<<x*y<<endl;
30     cout<<Output.str();
31     return 0;
32 } 
33 */
34 
35 //向输出串流对象插入数据
36 int main(){
37     char buf[80];
38     ostrstream Output(buf, sizeof(buf));//对Output的数据成员初始化 
39     double x, y;
40         cout<< "Input x:";
41     cin>> x;
42     cout<< "Input y:";
43     cin>> y;
44     Output<<x<<"*"<<y<<"="<<x*y<<endl;
45     cout<<Output.str();
46     return 0;
47 } 

 

C++: I/O流详解(三)——串流

标签:输入   输出   变量类型   names   out   i/o   iostream   构造   pre   

原文地址:http://www.cnblogs.com/llxblogs/p/7768786.html

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