开发者

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

On this website, someone writes:

while (! myfile.eof() )
{
   getline (myfile,li开发者_开发问答ne);
   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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜