Problem with EOF when determine stream end(确定流结束时出现EOF问题)
问题描述
当我尝试使用函数 feof(FILE *)
确定文件结尾时,我发现它没有按预期工作:即使流结束,也需要额外读取.例如feof(FILE*)
如果在读取 10 个字节后立即调用具有 10 个字节数据的文件,则不会告诉 true.我需要一个额外的读取操作,当然返回 0,然后 feof(FILE *)
会说好的,现在你到了."
When I try to determine end of file with function feof(FILE *)
, I find it does not work as I expected: an extra read is required even if the stream does end. e.g. feof(FILE*)
will not tell true if invoked on a file with 10 bytes data just after reading 10 bytes out. I need an extra read operation which of course return 0, then feof(FILE *)
will say "OK, now you reach the end."
我的问题是为什么还需要一个 read
以及如何确定文件的结尾,或者如果我不想要 feof
-style?
My question is why does one more read
required and how to determine end of file or how to know how many bytes left in a file stream if I don't want the feof
-style?
谢谢和最好的问候.
推荐答案
不要使用 feof() 或任何变体 - 就这么简单.您希望它以某种方式预测下一次读取将失败,但这不是它的作用 - 它告诉您上一次读取的结果是什么.读取文件的正确方法是(在伪代码中):
Do not use feof() or any variants - it is as simple as that. You want it to somehow predict the next read will fail, but that's not what it does - it tells you what the result of the PREVIOUS read was. The correct way to read a file is (in pseudocode):
while( read( file, buffer ) ) {
do something with buffer
}
也就是说,需要测试读操作的结果.对于 C 流和 C++ iostream 都是如此.
In other words, you need to test the result of the read operation. This is true for both C streams and C++ iostreams.
这篇关于确定流结束时出现EOF问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:确定流结束时出现EOF问题
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01