网站大量收购独家精品文档,联系QQ:2885784924

C++ 第14章 输入输出流(例子).doc

  1. 1、本文档共11页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C第14章输入输出流(例子)

首先来看一看在ios.h中有关ios类的定义的部分内容: class _CRTIMP ios { public: …… enum { skipws = 0x0001, //公有的无名枚举成员 left = 0x0002, right = 0x0004, internal = 0x0008, dec = 0x0010, oct = 0x0020, hex = 0x0040, showbase = 0x0080, showpoint = 0x0100, uppercase = 0x0200, showpos = 0x0400, scientific = 0x0800, fixed = 0x1000, unitbuf = 0x2000, stdio = 0x4000 }; …… static const long basefield; // dec | oct | hex static const long adjustfield; // left | right | internal static const long floatfield; // scientific | fixed ...... inline long flags( ) const; //公有的成员函数 inline long flags(long _l); inline long setf(long _f, long _m); inline long setf(long _l); inline long unsetf(long _l); inline int width( ) const; inline int width(int _i); inline char fill( ) const; inline char fill(char _c); inline int precision(int _i); inline int precision( ) const; protected: //保护的数据成员 long x_flags; // 输入输出状态字 int x_precision; // 输入输出精度 char x_fill; // 填充字符 int x_width; // 输出数据的域宽 ...... }; 系统根据这几个数据成员的值,来控制输入输出格式。 通过上述公有成员函数来设置这几个状态字。 各种状态由公有的无名枚举成员定义。 返回ppt讲稿 例14.18 用友元函数实现复数类对象插入和提取运算符重载函数 #includeiostream.h class Complex { double Real, Image; public: Complex(double r=0, double i=0) { Real=r; Image=i; } friend istream operator(istream , Complex ); friend ostream operator(ostream , Complex ); }; istream operator(istream in, Complex c) { 注意参数和返回值 inc.Realc.Image; return in; } ostream operator(ostream out, Complex c) { 注意参数和返回值 outc.Real; if(c.Image0) out+c.Imagei; else if(c.Image0) outc.Imagei; outendl; return out; } void main( ) { Complex c1(1, 2), c2; coutc1

您可能关注的文档

文档评论(0)

cj80011 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档