I've started seeing while( !feof( f )) in a lot of posts lately, and I haven't found a good link to reference to explain why that is wrong. So I thought I'd take a stab at explaining it here.
|
|
It's wrong because (in the absence of a read error) it enters the loop one more time than the author expects. If there is a read error, the loop never terminates. Although there may be cases when it is correct to use this form, I cannot think of any and in 100% of the cases that I've seen this used it has been incorrect. Further, it is so gratingly ugly that even if a case were encountered where it would generate the correct semantics, it should be avoided because it looks so wrong. Consider the following code:
This program will consistently print one greater than the number of characters in the input stream (assuming no read errors). Consider the case where the input stream is empty:
In this case, This happens in all such cases. It is always necessary to check the return value of a read (either an Even worse, consider the case where a read error occurs. In that case, So, in summary, although I cannot state with certainty that there is never a situation in which it may be semantically correct to write " |
|||||
|
|
No it's not always wrong. If your loop condition is "while we haven't tried to read past end of file" then you use |
|||||||||
|
|
feof() indicates if one has tried to read past the end of file. That means it has little predictive effect: if it is true, you are sure that the next input operation will fail (you aren't sure the previous one failed BTW), but if it is false, you aren't sure the next input operation will succeed. More over, input operations may fail for other reasons than the end of file (a format error for formatted input, a pure IO failure -- disk failure, network timeout -- for all input kinds), so even if you could be predictive about the end of file (and anybody who has tried to implement Ada one, which is predictive, will tell you it can complex if you need to skip spaces, and that it has undesirable effects on interactive devices -- sometimes forcing the input of the next line before starting the handling of the previous one), you would have to be able to handle a failure. So the correct idiom in C is to loop with the IO operation success as loop condition, and then test the cause of the failure. For instance:
|
|||||
|