我什么时候停止读取文件?

发布于 2024-10-07 07:56:44 字数 330 浏览 3 评论 0原文

从文件中读取最后一个条目后,或者尝试读取更多条目后,some_file.good() 是否返回 false ?也就是说,我应该写

while (input.good())
{
    getline(input, line);
    // ...process
}

还是

getline(input, line);
while (input.good())
{
    // ...process
    getline(input, line);
}

Does some_file.good() return false after reading the last entry from the file, or after attempting to read beyond that? That is, should I write

while (input.good())
{
    getline(input, line);
    // ...process
}

or

getline(input, line);
while (input.good())
{
    // ...process
    getline(input, line);
}

?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸短情长 2024-10-14 07:56:44

尝试阅读更多内容...

您可以尝试:

while(getline(input, line))
{
// do stuff with line
}

应该添加,该流实现 operator!,它会检查您通常会检查的标志。 getline 返回的是输入流,但由于运算符的原因,会检查标志。

Attempting to read beyond that...

You could try:

while(getline(input, line))
{
// do stuff with line
}

Should add, that stream implements operator!, which checks the flags that you normally would. The return from getline is the input stream, but because of the operator, the flags are checked.

[旋木] 2024-10-14 07:56:44

正如已经建议的,当没有更多行时, getline 返回零。如果设置了 EOF 标志(即在流上到达文件末尾),则方法 eof() 返回 true:

if(input.eof())
{
// end of file
}

As already suggested, getline returns zero when there are no more lines. Also the method eof() returns true if the EOF flag is set (i.e. end of file reached on the stream):

if(input.eof())
{
// end of file
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文