欢迎来到天天文库
浏览记录
ID:23165983
大小:187.50 KB
页数:45页
时间:2018-11-05
《[计算机软件及应用]c标准库》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、C标准库本文包括大部分C标准库函数,但没有列出一些用途有限的函数以及某些可以简单的从其他函数合成的函数,也没有包含多字节和本地化函数。标准库中的各个函数、类型以及宏分别在以下标准头文件中说明:1输入与输出头文件定义了用于输入和输出的函数、类型和宏。最重要的类型是用于声明
2、文件指针的FILE。另外两个常用的类型是size_t和fpos_t,size_t是由运算符sizeof产生的无符号整类型;fpos_t类型定义能够唯一说明文件中的每个位置的对象。由头部定义的最有用的宏是EOF,其值代表文件的结尾。Macros:NULL_IOFBF_IOLBF_IONBFBUFSIZEOFFOPEN_MAXFILENAME_MAXL_tmpnamSEEK_CURSEEK_ENDSEEK_SETTMP_MAXstderrstdinstdoutVariables:typedefsize_ttypedefFILEtypedeffpos_tVariablesandDefini
3、tions:size_tistheunsignedintegerresultofthesizeofkeyword.FILEisatypesuitableforstoringinformationforafilestream.fpos_tisatypesuitableforstoringanypositioninafile.NULListhevalueofanullpointerconstant._IOFBF,_IOLBF,and_IONBFareusedinthesetvbuffunction.BUFSIZisanintegerwhichrepresentsthesizeoftheb
4、ufferusedbythesetbuffunction.EOFisanegativeintegerwhichindicatesanend-of-filehasbeenreached.FOPEN_MAXisanintegerwhichrepresentsthemaximumnumberoffilesthatthesystemcanguaranteethatcanbeopenedsimultaneously.FILENAME_MAXisanintegerwhichrepresentsthelongestlengthofachararraysuitableforholdingthelon
5、gestpossiblefilename.Iftheimplementationimposesnolimit,thenthisvalueshouldbetherecommendedmaximumvalue.L_tmpnamisanintegerwhichrepresentsthelongestlengthofachararraysuitableforholdingthelongestpossibletemporaryfilenamecreatedbythetmpnamfunction.SEEK_CUR,SEEK_END,andSEEK_SETareusedinthefseekfunc
6、tion.TMP_MAXisthemaximumnumberofuniquefilenamesthatthefunctiontmpnamcangenerate.stderr,stdin,andstdoutarepointerstoFILEtypeswhichcorrespondtothestandarderror,standardinput,andstandardoutputstreams.1.1文件操作1.1.1fopen#includeFILE*fopen(constchar*filename,constchar*mode);返回:成功为FILE指针,失败为NU
7、LL打开以filename所指内容为名字的文件,返回与之关联的流。mode决定打开的方式,可选值如下:"r"打开文本文件用于读"w"创建文本文件用于写,并删除已存在的内容(如果有的话)"a"添加;打开或创建文本文件用于在文件末尾写"rb"打开二进制文件用于读"wb"创建二进制文件用于写,并删除已存在的内容(如果有的话)"ab"添加;打开或创建二进制文件用于在文件末尾写"r+"打开文本文件用于更新(即读和写)"w+"创建文本文件用于更新,并删除已存在的内容(
此文档下载收益归作者所有