当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ ios fail()用法及代码示例


C++中的ios类的fail()方法用于检查流是否引发了任何失败错误。这意味着该函数将检查此流是否设置了故障位。

用法:

bool fail() const;

参数:此方法不接受任何参数。


返回值:如果流设置了故障位,则此方法返回true,否则返回false。

示例1:

// C++ code to demonstrate 
// the working of fail() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 
    stringstream ss; 
  
    // Using fail() function 
    bool isFail = ss.fail(); 
  
    // print result 
    cout << "is stream fail: "
         << isFail << endl; 
  
    return 0; 
}
输出:
is stream fail: 0

示例2:

// C++ code to demonstrate 
// the working of fail() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 
    stringstream ss; 
    ss.clear(ss.failbit); 
  
    // Using fail() function 
    bool isFail = ss.fail(); 
  
    // print result 
    cout << "is stream fail: "
         << isFail << endl; 
  
    return 0; 
}
输出:
is stream fail: 1

参考: hhttp://www.cplusplus.com/reference/ios/ios/fail/



相关用法


注:本文由纯净天空筛选整理自guptayashgupta53大神的英文原创作品 ios fail() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。