【VC编程技巧】文件☞2.1EOF的误区

在编程的过程中,文件的操作是一个经常用到的问题,而关于EOF的理解大多人存在一个误区:“EOF--〉文件的结束符”!EOF是End Of File的缩写;在C语言中它是标准库stdio.h中定义的一个宏,而不是文件的结束符。

/***
*stdio.h - definitions/declarations for standard I/O routines
*
*       Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
*       This file defines the structures, values, macros, and functions
*       used by the level 2 I/O ("standard I/O") routines.
*       [ANSI/System V]
*
*       [Public]
*
****/

#if     _MSC_VER > 1000
#pragma once
#endif

#ifndef _INC_STDIO
#define _INC_STDIO
...
#define EOF     (-1)
...

MSDN是这样说的:EOF is returned by an I/O routine when the end-of-file (or in some cases, an error) is encountered,即EOF是I/O操作遇到程序末尾或者是遇到错误时所返回的标志。所以说EOF不是文件中存在的内容,也就更谈不上文件结束符了。

当I/O操作返回EOF时,我们可以用函数foef()来判断I/O操作是否到达文件末尾,用函数ferror()来判断I/O操作是什么错误!

MSDN中函数foef():

int feof( FILE *stream );

Return Value

The feof function returns a nonzero value after the first read operation that attempts to read past the end of the file. It returns 0 if the current position is not end of file. There is no error return.

Parameter

stream

Pointer to FILE structure

Remarks

The feof routine (implemented both as a function and as a macro) determines whether the end ofstream has been reached. When end of file is reached, read operations return an end-of-file indicator until the stream is closed or untilrewind, fsetpos, fseek, or clearerr is called against it.


MSDN中函数ferror():

int ferror( FILE *stream );

Return Value

If no error has occurred on stream, ferror returns 0. Otherwise, it returns a nonzero value.

Parameter

stream

Pointer to FILE structure

Remarks

The ferror routine (implemented both as a function and as a macro) tests for a reading or writing error on the file associated withstream. If an error has occurred, the error indicator for the stream remains set until the stream is closed or rewound, or untilclearerr is called against it.





  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值