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


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


C++中的ios类的operator()方法用于设置此流的任何错误标志。这包括故障位或故障位。

用法:

operator void*() const;

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


返回值:如果此流设置了任何错误位,则此方法返回空指针。

示例1:

// C++ code to demonstrate 
// the working of operator() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 
    stringstream ss; 
  
    // Using operator() function 
    if (ss) { 
        cout << "No error bit is set.\n"; 
    } 
    else { 
        cout << "Error bit is set.\n"; 
    } 
  
    return 0; 
}
输出:
No error bit is set.

示例2:

// C++ code to demonstrate 
// the working of operator() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 
    stringstream ss; 
    ss.clear(ss.failbit); 
  
    // Using operator() function 
    if (ss) { 
        cout << "No error bit is set.\n"; 
    } 
    else { 
        cout << "Error bit is set.\n"; 
    } 
  
    return 0; 
}
输出:
Error bit is set.

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



相关用法


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