C++ EOF 获取行错误
我正在使用相关问题之一中使用的表格。唯一的问题是我一直在文件的末尾。
文件是一个fstream,str是一个字符串。
未处理的异常 Microsoft C++ 异常:std::ios_base::failure
while (getline(file, str)) {}
如果 (cin.bad()) { // IO错误 } else if (!cin.eof()) { // 格式错误(对于 getline 不可能,但对于运算符>>可能) } 别的 { // 格式错误(对于 getline 不可能,但对于运算符>>可能) // 或文件结尾(无法区分) }
I was using the form used in one of the related questions. Only problem is that i keep getting right at the end of the file.
The file is an fstream and the str is a string.
Unhandled exception
Microsoft C++ exception: std::ios_base::failure
while (getline(file, str)) {
}
if (cin.bad()) { // IO error } else if (!cin.eof()) { // format error (not possible with getline but possible with operator>>) } else { // format error (not possible with getline but possible with operator>>) // or end of file (can't make the difference) }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您遇到抛出
std::ios_base::failure
异常的情况,很可能是由于您(或您正在使用的某些代码)为您的文件打开了这些异常而引起的。默认情况下它们应该处于关闭状态。为了进行测试,您可以尝试在 while 循环之前立即关闭它们,但您可能需要调查是什么打开了它们。If you are getting
std::ios_base::failure
exceptions thrown it is most likely caused by you (or some code that you are using) turning them on for your file. They should be off by default. Just to test, you can try turning them off immediately before the while loop, but you probably need to investigate what is turning them on.