This question and its answers are over a year long, however, I've been referred to here by another reader, who seems to have been classically conditioned by this thread and salivates at the sight of while(!in.eof()) in arbitrary contexts.
Indeed, the arguments proposed here seem to be missing an important subtlety about termination condition and reinforces the presumption in the title question, that "checking for eof explicitly using iostream::eof is wrong".
My proposition is that, not only this presumption is false, but checking eof() explicitly is indeed the more appropriate strategy. This point is subtle and important, and here goes my argument.
Suggested as correct termination and read order by answers above is the following:
int data;
while(in >> data) { /* ... */ }
// which is equivalent to
while( !(in >> data).fail() ) { /* ... */ }
The subtle point here is that, a failure (due to read attempt beyond eof) is taken as the termination condition. What this means is that there is no way to distinguish between a successful stream and one that really fails. Take the following two examples:
- A proper input:
1 2 3 4 5
- An improper input:
1 2 a 3 4 5
The while(in>>data) terminates with a set failbit for both streams: In the first case, due to failed read attempt beyond eof after 5th iteration; and in the second case, due to the more obvious formatting error after 2nd iteration. So past the loop there is no (easy) way to distinguish a proper input from an improper one.
Whereas, take the following:
while( !in.eof() )
{
int data;
in >> data;
if ( in.fail() ) /* handle with break or throw */;
// now use data
}
Here, in the absence of the explicit in.fail() test, whatever said in above answer by @Xeo is of course correct. Yet, this test is not introduced for the mere purpose of making while(!in.eof()) acceptable, but rather to distinguish between a proper and improper input stream. Let me introduce a slight modification which deals with trailing space more properly:
while( !in.eof() )
{
int data;
in >> data >> ws; // eat whitespace with std::ws
if ( in.fail() ) /* handle with break or throw */;
// now use data
}
std::ws skips any potential (zero or more) trailing blank space in the stream while setting the eofbit, and not the failbit (trailing blanks are commonly an acceptable form of input in a formatted stream). Here, in.fail() test will never return true due to reading past eof() except for all-blank streams; it will only be true when there is an actual error in the stream, and one that requires special handling.
Yet another version, if all-blank streams are acceptable input, is
while( !(in>>ws).eof() )
{
int data;
in >> data;
if ( in.fail() ) /* handle with break or throw */;
// now use data
}
And that, sirs, is my proposition.
scanf(...) != EOFwon't work in C either, becausescanfreturns the number of fields successfully parsed and assigned. The correct condition isscanf(...) < nwherenis the number of fields in the format string. – Ben Voigt Apr 5 '12 at 16:50EOFif end of file is encountered before the first field conversion (successful or not). If end-of-file is reached between fields, it will return the number of fields succcessfully converted and stored. Which makes comparison toEOFwrong. – Ben Voigt Nov 24 '12 at 15:06while(fail)loop terminates with both an actual failure and an eof. Think about if you require 3 ints per iteration (say you are reading an x-y-z point or something), but there is, erroneously, only two ints in the stream. – sly Nov 24 '12 at 19:47