《C输入输出类层次》PPT课件.ppt_第1页
《C输入输出类层次》PPT课件.ppt_第2页
《C输入输出类层次》PPT课件.ppt_第3页
《C输入输出类层次》PPT课件.ppt_第4页
《C输入输出类层次》PPT课件.ppt_第5页
已阅读5页,还剩21页未读 继续免费阅读

下载本文档

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

文档简介

1、第8章 C+输入输出类层次,-数据的传输不用关心数据的结构,与设备无关,上海大学机电工程与自动化学院 雷电,8.1 概述,键盘、显示器、图形卡、文件、磁盘、内存 C+输入输出类核心是:流! 流:字节序列,缓冲区 C+输入输出类结构 图8-2,Input buff,键盘,显示器,处理,Output buff,abcd,uvwxyz,驱动程序,驱动程序,上海大学机电工程与自动化学院 雷电,8.1.1 标准输入输出层次体系,ios_base,basic_ios,basic_istream,basic_ostream,basic_ifstream,basic_istringstream,basic_i

2、ostream,basic_ostringstream,basic_ofstream,basic_stringstream,basic_fstream,上海大学机电工程与自动化学院 雷电,状态组件,缓存组件,转换组件,8.1.4 模板的使用,typedef basic_ifstream ifstream; typedef basic_ofstream ofstream; typedef basic_istringstream istringstream; typedef basic_ostringstream ostringstream;,上海大学机电工程与自动化学院 雷电,8.3 高层输入输

3、出类,2.2 控制台输入输出类 头文件:#include 8.5 文件输入输出类(文件设备) 头文件:#include 8.7 字符流输入输出类(内存设备) 头文件: #include ,上海大学机电工程与自动化学院 雷电,输入流 basic_istream,get 从输入流读一个或多个字符 getline 从输入流读一行 read 从输入流二进制读. seekg 在输入流移动读位置 tellg 报告流当前读的位置 从输入流读,上海大学机电工程与自动化学院 雷电,输出流 basic_ostream,put 写一个字符到流 write 二进制写到输出流 seekp 置输出流位置 tellp 报告

4、流当前写的位置 写到输出流,上海大学机电工程与自动化学院 雷电,文件,以文件的形式存储的数据具有持久性,不受容量的限制,易于不同程序间数据的共性享。 内存中的数据存放到磁盘文件有两种存储格式,二进制和文本格式。 例: int a= 12345; 二进制(short) 12345=1+8+16+32+256*(16+32) 内存映像 0011 0000 0011 1001,5,7,6,位号,4,3,2,1,0,值,16,64,32,8,4,2,1,二进制,128,低,高,4096,16384,8192,2048,1024,512,256,32768,65536,上海大学机电工程与自动化学院 雷电

5、,char *a=“12345”; 文本格式(ASCII形式 ) 0=48 = 32+16 = ( 0011 0000 )2 内存映像 0011 0001 0011 0010 0011 0011 0011 0100 0011 0101,C语言把文件看成字节流(如同键盘、屏幕) 字节为最小存储和读写单位 是先进先出的缓冲区 每当读写操作后,流对象内部自动移动读写指针位置。,文本文件读写:可格式控制的读写(文本=某数据类型) 二进制文件读写:读写无格式的数据,上海大学机电工程与自动化学院 雷电,8.2 ios_base 和 basic_ios,流打开标志常量,用于指定打开流时的状态 ios_bas

6、e:in 输入 ,ifstream 的缺省标志 ios_base:out 输出,ofstream 的缺省标志 ios_base:binary 二进制, read,write以ios_base:binary标志打开的流时不进行转换。 Streams were originally designed for text, so the default output mode is text. In text mode, the newline character (hexadecimal 10) expands to a carriage returnlinefeed (16-bit only).,

7、上海大学机电工程与自动化学院 雷电,ios_base: app 追加 ios_base: ate打开流后指针移到流尾 ios_base:trunc打开流后截断原流数据 例: ofstream fout(“data.txt”,ios_base:app); fstream f; f.open(data.bin,ios_base:out | ios_base:trunc | ios_base:binary );,上海大学机电工程与自动化学院 雷电,文件流,文本方式打开 例:ifstream myFile; myFile.open( filename ); 例:ifstream* pmyFile =

8、new ifstream; pmyFile-open( filename ); 例:ifstream myFile( filename ); 二进制方式打开 例:ofstream myFile; myFile.open( filename ); 例:ofstream* pmyFile = new ofstream; / On the heap pmyFile-open( filename ); 例:ofstream myFile( filename, ios_base:out);,上海大学机电工程与自动化学院 雷电,可省,例: #include using namespace std; int

9、 iarray2 = 99, 10 ; int main( ) ofstream ofs( “test.dat” ); ofs.write( (char *) iarray, sizeof( iarray ) ); ofs1.close(); ifstream ifs( test.dat ,ios_base:binary); ifs.read( (char *) iarray, sizeof( iarray ) ); ifs.close(); 二进值方式存储数据保密(也可能是缺点),占用的空间小.注意指针变量的数据恢复其值无意义的.,文本方式写,二进制方式读导致iarray不再是期望的数据!,

10、ofstream ofs(test.dat, ios_base:binary );,上海大学机电工程与自动化学院 雷电,Open Function for Output Streams,ofstream ofile1( FILENAME ); / Default is basic_ios:out ofstream ofile2( FILENAME, basic_ios:out ); / Equivalent to above ofstream ofile3( FILENAME, basic_ios:app ); ofstream ofile; ofile.open( FILE1, basic_

11、ios:out ); . ofile.close(); / FILE1 closed ofile.open( FILE2, basic_ios:out ); . ofile.close(); / FILE2 closed,上海大学机电工程与自动化学院 雷电,errors during extraction sets the streams fail bit,The ! operator is overloaded 流可作为判断条件,如 if( !cout). 等价 if( cout.fail() ). 例: double sum=0; double score; int count=0; wh

12、ile(cinscore) sum+=score; count+; if(count!=0)cout“av=sum/countendl;,Testing for Extraction Errors,上海大学机电工程与自动化学院 雷电,测试打开文件,例:以文本方式打开文件,用于读 ifstream fin(“data.txt”); if(!fin)cout“不能打开文件!”endl; 或: ifstream fin; fin.open(“data.txt”); if(!fin.is_open() cout“不能打开文件!”endl;,上海大学机电工程与自动化学院 雷电,Using Extract

13、ion Operators( ),例: char s = 123.45; double amt; istringstream myString( s ); myString amt; / Amt should contain 123.45 string szData=“37.5 11.8”; istringstream sin(szData); double x,y; sinx;siny;,The extraction operator (), which is preprogrammed for all standard C+ data types, is the easiest way t

14、o get bytes from an input stream object.,上海大学机电工程与自动化学院 雷电,例:char line100; cout Type a line terminated by t endl; cin.getline( line, 100, t ); cout line; 例:从输入流读字符包括空格: int get(); 如: while( (c=cin.get() )!= EOF) coutc; close Function 例,分隔符,缺省是换行,get, getline Function,上海大学机电工程与自动化学院 雷电,流数据的读写,例 char

15、buff133; ofstream ofile(“data0.txt”); ifstream ifile(“data.txt”); while(ifile.getline(buff,133) ofilebuff“nn”;,上海大学机电工程与自动化学院 雷电,read Function #include #include using namespace std; int main() struct double salary; char name23; employee; ifstream is( payroll ,ios_base:binary ); if( is ) is.read( (ch

16、ar *) ,上海大学机电工程与自动化学院 雷电,在你的类中重载 操作符,例:设你的类是CData class CData int mo;int da;int yr; friend istream ,上海大学机电工程与自动化学院 雷电,Using Insertion Operators and Controlling Format,Output Width double values = 1.23, 35.36, 653.7, 4358.24 ; for( int i = 0; i double values = 1.23, 35.36, 653.7, 4358.24 ; char *name

17、s = Zoot, Jimmy, Al, Stan ; for( int i = 0; i 4; i+ ) cout setw( 6 ) namesi setw( 10 ) valuesi endl;,Output: 1.23 35.36 653.7 4358.24,Output: Zoot 1.23 Jimmy 35.36 Al 653.7 Stan 4358.24,上海大学机电工程与自动化学院 雷电,在你的类中重载 操作符,class Date int mo, da, yr; public: Date( int m, int d, int y ) mo = m; da = d; yr =

18、y; friend ostream ,Output 5/6/92,上海大学机电工程与自动化学院 雷电,Binary Output Files,#include using namespace std; int iarray2 = 99, 10 ; int main() ofstream ofs ( test.dat, ios_base:binary ); / Exactly 8 bytes written ofs.write( (char*) ,上海大学机电工程与自动化学院 雷电,8.7 字节流输入输出istringstream,ostringstream,例格式化: int a=40; double b=100.24; char *s=“abc”; ostringstream sout; soutxy;,上海大学机电工程与自动化学院 雷电,输入输出内存流 stringstream

温馨提示

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

最新文档

评论

0/150

提交评论