确定流结束时出现EOF问题

2023-10-18C/C++开发问题
0

本文介绍了确定流结束时出现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问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6