std::basic_ios<CharT,Traits>::fail
来自 cppreference.com
bool fail() const; |
||
如果关联的流发生错误,则返回 true。具体来说,如果 rdstate() 中设置了 badbit
或 failbit
,则返回 true。
有关设置 failbit
或 badbit
的条件列表,请参见 ios_base::iostate。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
如果发生错误,则为 true,否则为 false。
[编辑] 示例
运行此代码
#include <cstdlib> #include <fstream> #include <iostream> int main() { std::ifstream file("test.txt"); if (!file) // operator! is used here { std::cout << "File opening failed\n"; return EXIT_FAILURE; } // typical C++ I/O loop uses the return value of the I/O function // as the loop controlling condition, operator bool() is used here for (int n; file >> n;) std::cout << n << ' '; std::cout << '\n'; if (file.bad()) std::cout << "I/O error while reading\n"; else if (file.eof()) std::cout << "End of file reached successfully\n"; else if (file.fail()) std::cout << "Non-integer data encountered\n"; }
[编辑] 参见
下表显示了所有可能的 ios_base::iostate 标记组合的 basic_ios 访问器 (good(),fail() 等) 的值
ios_base::iostate 标记 | basic_ios 访问器 | |||||||
eofbit
|
failbit
|
badbit
|
good() | fail() | bad() | eof() | operator bool | operator! |
false | false | false | true | false | false | false | true | false |
false | false | true | false | true | true | false | false | true |
false | true | false | false | true | false | false | false | true |
false | true | true | false | true | true | false | false | true |
true | false | false | false | false | false | true | true | false |
true | false | true | false | true | true | true | false | true |
true | true | false | false | true | false | true | false | true |
true | true | true | false | true | true | true | false | true |
检查文件错误 (function) |