简体   繁体   中英

No `while (!my_ifstream.eof()) { getline(my_ifstream, line) }` in C++?

On this website , someone writes:

 while (! myfile.eof() ) { getline (myfile,line); cout << line << endl; } 

This is wrong, read carefully the documentation for the eof() memberfunction. The correct code is this:

 while( getline( myfile, line)) cout << line << endl; 

Why is this?

There are two primary reasons. @Etienne has pointed out one: reading could fail for some reason other than reaching the end of the file, in which case your first version will go into an infinite loop.

Even with no other failures, however, the first won't work correctly. eof() won't be set until after an attempt at reading has failed because the end of the file was reached. That means the first loop will execute one extra iteration that you don't really want. In this case, that'll just end up adding an extra blank (empty) line at the end of the file. Depending on what you're working with, that may or may not matter. Depending on what you're using to read the data, it's also fairly common to see the last line repeated in the output.

A stream operation (such as reading) can fail for multiple reasons. eof() tests just one of them. To test them all, simply use the stream's void * conversion operator. That's what's done in the second snippet.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM