basic_ios::fail

指示无法从流提取有效的字段。

bool fail( ) const;

返回值

true,如果 rdstate& (badbit|failbit) 不为零,否则 false。

有关 failbit 的更多信息,请参见 ios_base::iostate

示例

// basic_ios_fail.cpp
// compile with: /EHsc
#include <iostream>

int main( void ) 
{
   using namespace std;
   bool b = cout.fail( );
   cout << boolalpha;
   cout << b << endl;
}

Output

false

要求

标头: <ios>

命名空间: std

请参见

参考

basic_ios Class

iostream编程

(mfc)约定