我什么时候停止读取文件?
从文件中读取最后一个条目后,或者尝试读取更多条目后,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试阅读更多内容...
您可以尝试:
应该添加,该流实现
operator!
,它会检查您通常会检查的标志。 getline 返回的是输入流,但由于运算符的原因,会检查标志。Attempting to read beyond that...
You could try:
Should add, that stream implements
operator!
, which checks the flags that you normally would. The return fromgetline
is the input stream, but because of the operator, the flags are checked.正如已经建议的,当没有更多行时, getline 返回零。如果设置了 EOF 标志(即在流上到达文件末尾),则方法
eof()
返回 true: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):