C++ EOF 获取行错误

发布于 2024-08-23 07:51:55 字数 391 浏览 9 评论 0原文

我正在使用相关问题之一中使用的表格。唯一的问题是我一直在文件的末尾。

文件是一个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 技术交流群。

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

发布评论

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

评论(1

や三分注定 2024-08-30 07:51:55

如果您遇到抛出 std::ios_base::failure 异常的情况,很可能是由于您(或您正在使用的某些代码)为您的文件打开了这些异常而引起的。默认情况下它们应该处于关闭状态。为了进行测试,您可以尝试在 while 循环之前立即关闭它们,但您可能需要调查是什么打开了它们。

file.exceptions(std::ios_base::goodbit);

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.

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