算法与数据结构:lecture 11 输入输出流_第1页
算法与数据结构:lecture 11 输入输出流_第2页
算法与数据结构:lecture 11 输入输出流_第3页
算法与数据结构:lecture 11 输入输出流_第4页
算法与数据结构:lecture 11 输入输出流_第5页
已阅读5页,还剩25页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、输入输出流C的输入输出处理的缺陷非类型安全#include int j=10;float f=2.3;void main( )printf(“%dn”, f); /输出f前2个字节的内容scanf(“%d”, &f); /输入到f前2个字节中scanf(“%d”, j); /输入值存放到地址0 x000A中printf(“%dn”, “abcde”); /输出“abcde”的地址C+的解决策略#include using namespace std;int j = 10;float f = 2.3;int main( )coutffj;coutf jendl;coutabcdeendl;ret

2、urn 0;C的输入输出处理的缺陷不可扩充性 不能识别未知的数据类型,只能使用预先定义的输入输出格式class A.;A a;void fn( ) printf(“%?”, a); /无法处理新定义的数据类型 scanf(“%?”, &a);C+的解决策略重载运算符只能用友元函数class A;friend ostream& operator(istream&, A&);A a;#include using namespace std;class Complex double real, image; friend ostream& operator(ostream& output, Comp

3、lex& c) output(c.real+c.image(istream& input, Complex& c) coutc.realc.image;return input; ;int main()Complex c1, c2;cinc1c2;coutc1=c1endl;coutc2=c2endl;return 0;C+的I/O流库I/O流:由若干字节组成的字节序列,它们按顺序从一个对象传送到另一个对象输出:字节流从内存流向输出设备(屏幕、打印机、磁盘等)输入:字节流从输入设备(如键盘、磁盘)流向内存C+中的输入输出流被定义为类,称为流类。用流类定义的对象称为流对象。C+的I/O流库(P4

4、18图13.3)ios:虚基类,负责设置流的状态istream:负责向流中写入数据 cin: 预定义对象,处理标准输入ostream:负责从流中读取数据cout:预定义对象,处理标准输出iostream:上述两个类的综合标准输出流标准输出流:流向标准输出设备(显示器)的数据。cout流对象:在控制台的输出cerr流对象:标准错误流,在控制台(显示器)显示错误的信息。不可被重定向输出到磁盘文件中。不经过缓冲区直接向显示器输出。若先放在缓冲区,则用clog。#include#include using namespace std;int main( )float a,b,c,disc;coutab

5、c;if(a=0)cerra is equal to zero, error!endl;else if(disc=b*b-4*a*c)0)cerrb*b-4*a*c0endl; else coutx1=(-b+sqrt(disc)/(2*a)endl; coutx2=(-b-sqrt(disc)/(2*a)endl; return 0;P422 例13.1标准类型的数据格式输出无格式输入输出:不指定输出的格式,由系统根据数据的类型采取默认格式。有格式输入输出:数据按用户指定的格式输出。用控制符控制输出格式(P54表3.1):setw, setfill, setprecision, setios

6、flags, resetiosflags用cout的成员函数控制(P424表13.3,13.4)不需要iomanip) width, fill, precision, setf, unsetf#include #include using namespace std;int main()double a =78.86, 67.534, 567.234, 899.678;char* name =Zoot, Jimmy, AI, Stan;for(int i=0; i4; i+)coutsetiosflags(ios:left)setw(10)nameiresetiosflags(ios:left

7、)setw(10)aiendl;return(0);Zoot 78.86Jimmy 67.534AI 567.234Stan 899.678#include using namespace std;int main( ) int a=21; cout.setf(ios:showbase); coutdec:aendl; cout.unsetf(ios:dec); cout.setf(ios:hex); couthex:aendl; cout.unsetf(ios:hex); cout.setf(ios:oct); coutoct:aendl; char *pt=China; cout.widt

8、h(10); coutptendl; cout.width(10); cout.fill(*); coutptendl; double pi=22.0/7; cout.setf(ios:scientific); coutpi=; cout.width(14); coutpiendl; cout.unsetf(ios:scientific); cout.setf(ios:fixed); cout.width(12); cout.setf(ios:showpos); cout.setf(ios:internal); cout.precision(6); coutpiendl; return 0;标

9、准输入流从标准输入设备(键盘)流向程序的数据。用get读入一个字符无参的get函数:cin.get( )有一个参数的get函数:cin.get(ch)有3个参数的get函数: cin.get(字符数组或指针,字符个数,终止字符)用getline函数读入一行字符 cin.getline(字符数组或指针,字符个数,终止字符)#include using namespace std;int main( )int a;char c100;coutplease enter a sentence:endl;for(int i=0; i99;i+) if( a=cin.get( ) ) != n)ci=a;

10、 else ci=0; break; c99=0;coutcendl;return 0;#include using namespace std;int main( )int a;char c100;coutplease enter a sentence:endl;cin.getline(c, 100, n);coutcendl;return 0;文件存储于外部介质的数据集合,以一个文件名标识完全的文件名包括其所在目录信息流式文件:C将文件看成由字符构成的序列,即字符流操作以字节为基础,一次可以读写多个字节基本文件处理读:从文件中将数据拷贝到内存变量写:将内存变量中的数据拷贝到文件C文件分类从

11、用户角度:分为特殊文件和普通文件特殊文件:键盘、显示器、打印机等等。普通文件:磁盘文件从数据组织形式:分为ASCII文件和二进制文件ASCII文件:也称文本文件,每个字节放一个ASCII代码,代表一个字符二进制文件:按数据在内存中的存储形式原样输出到磁盘上存放,故又称为内存数据的映像文件。因为文件中的信息不是字符数据,而是字节中的二进制形式的信息,因此又称为字节文件。例:整数10000在内存中的存储形式、输出的ASCII码形式和二进制形式文件流类与文件流对象文件流:以外存文件为输入输出对象的数据流。三个用于文件操作的文件类:ifstream:支持从磁盘文件的输入。ofstream:支持向磁盘文

12、件的输出。fstream:支持对磁盘文件的输入输出。文件的打开打开磁盘文件为文件流对象和指定的磁盘文件建立关联指定文件的工作方式:输入或输出,ASCII文件或二进制文件实现方法调用成员函数open: ofstream outfile; outfile.open(“f1.dat”, ios:out);在定义文件流对象时指定参数 ofstream outfile(“f1.dat”, iso:out);文件的高级使用方式打开文件:首先定义一个文件流对象,再调用类成员函数open.fstream outfile;outfile.open(“G:ctestmytest”, ios:out|ios:bin

13、ary)常用文件使用方式:采用多个“元方式”的组合:ios:in(输入)、ios:out(输出)、ios:app(追加)、ios:binary(二进)例:文本输入:ios:in例:二进读写:ios:in|ios:out|ios:binary文件的关闭用成员函数close outfile.close( )#include #include /有些可能需要using namespace std;int main( )ofstream outfile(e:tempf1.dat, ios:out);if(!outfile)cerropen error!endl;exit(1);for(int i=0;

14、i10;i+)outfile(rand( ) % 100) ;outfile.close( );return 0;P437 例13.8#include #include using namespace std;int main( ) int a10, i, id; ifstream infile(e:tempf1.dat, ios:in); if(!infile) cerropen error!endl; exit(1); for(i=0;iai; coutai ; coutendl; id=0; for(i=1; iaid) id=i; coutmax=aidnorder=idendl; i

15、nfile.close( ); return 0;P438 例13.9字符读写函数读:ifstream &fstream:get(char)写:ofsteam &fstream:put(char)fstream outfile;outfile.open(“d:abc.txt, ios:out);if(!outfile) exit(1);coutEnter a text +#):n;cin.get(ch);while(ch!=#)outfile.put(ch); cin.get(ch);outfile.close();fstream infile;infile.open(D:abc.txt, i

16、os:in);if(!infile) exit(1);while(!infile.eof()infile.get(ch);cout.put(ch);infile.close();按行拷贝文本文件#include #include using namespace std;int main( )ifstream infile(D:ctestnews.txt);ofstream outfile(D:ctestnews2.txt);string s;while(getline(infile, s)outfilesendl; /为什么要加上endlreturn(0);对二进制文件的操作用成员函数read

17、和write读写二进制文件istream& read(char *buffer, int len);ostream& write(const char *buffer, int len);与文件指针有关的流成员函数(P451 表13.7)随机访问二进制数据文件可以利用上面的成员函数,随机地访问文件中任一位置上的数据,还可以修改文件中的内容。#include #include using namespace std;struct Studentchar name20;int num;int age;char sex;int main( ) Student stud3=Li, 1001, 18,f

18、,Fang, 1002,19,m,Wang,1004,17,f; ofstream outfile(e:tempstud.dat, ios:binary); if(!outfile) cerropen error!endl;exit(1); for(int i=0;i10;i+)outfile.write(char*)&studi, sizeof(studi); outfile.close ( ); return 0;P448 例13.14#include #include using namespace std;struct Studentchar name20;int num; int age; char

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论