合工大计算机学院程序设计10第10章C的输入输出.ppt

合工大计算机学院程序设计10第10章C的输入输出.ppt

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

第十章 C++的输入输出;§10.1 流与文件 一、流;二、文件;§10.2 文件的输入和输出;一、文件的打开和关闭 1. C++的三种文件流;2. 文件的打开与关闭 方法一:使用函数open;方法二:通过流类的构造函数在创建流时直接与某文件相关联;3. open函数的原型;文件打开模式mode;mode参数用位或运算|组合枚举常量 ofstream ofile; ofile.open( “test.bak”, ios::out|ios::binary ) ; // 以二进制形式打开当前目录下的test.bak文件,准备进行写操作 打开失败:重载!运算符 if ( ! ofile ) { 警告打开文件失败; 退出程序; } 继续正常的文件操作; ;二、文件的读写;例1:将文件file_from拷贝到文件file_to中去;例2:把一个整数、一个浮点数和一个字符串写到名为out.txt的文本文件中;例3:从例2程序建立的文件中读入相关数据;例4:百钱买百鸡;ifstream ifile(d:\\myfile.txt); i=0; while(ifile.get(a[i])){//不可用,它不能读白字符 if(a[i]==\n) break; i++; }// 把文件中的第一行(到‘\n’)内容读入a字符数组 a[i]=\0; // a加上结束符,成为完整的字符串 coutaendl; while(1){ ifileijk;//由文件读入 if(ifile.eof()!=0) break; coutsetw(6)isetw(10)jsetw(10)kendl;//屏幕显示 } ifile.close(); } ;myfile.txt;例5;inventory::inventory(char *des,char *no,int quan,double cost,double ret){ strcpy(Description,des); strcpy(No,no); Quantity=quan; Cost=cost; Retail=ret; } void inventory::display(){ cout.setf(ios::left); coutsetw(20)Descriptionsetw(10)No; cout.unsetf(ios::left);//要改为右对齐,先清左对齐 cout.setf(ios::right); coutsetw(10)Quantitysetw(10)Costsetw(10)Retailendl; };inventory::Bdatatofile(ofstreamdist){ dist.write(Description,20); dist.write(No,10); dist.write((char*)Quantity,sizeof(int)); dist.write((char*)Cost,sizeof(double)); dist.write((char*)Retail,sizeof(double)); } inventory::Bdatafromfile(ifstreamsour){ sour.read(Description,20); sour.read(No,10); sour.read((char*)Quantity,sizeof(int)); sour.read((char*)Cost,sizeof(double)); sour.read((char*)Retail,sizeof(double)); }//由此可见读和写是完全对称的过程,次序决不能错;void main(){ inventory car1(夏利2000,805637928,156,80000,105000),car2; inventory motor1(金城125302,10000,13000),motor2; ofstream ddatafile(d:\\Ex9_10.data,ios::out|ios::binary); car1.Bdatatofile(ddatafile); motor1.Bdatatofile(ddatafile); cout对象car1:endl; car1.display(); cout对象motor1:endl; motor1.display(); cout对象car2:endl; car2.display(); cout对象motor2:endl; motor2.display(); ddatafile.clos

文档评论(0)

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

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

1亿VIP精品文档

相关文档