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


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


C++中的ios类的clear()方法用于通过设置来更改指定标志的当前状态。因此,此函数更改此流的内部状态。

用法:

void clear(iostate state)

参数:此方法接受iostate作为参数,它是要在此流中设置的标志位。它可以是goodbit,failbit,eofbit或badbit。


返回值:此方法不返回任何内容。

示例1:

// C++ code to demonstrate 
// the working of clear() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 
    stringstream ss; 
  
    // Print the result 
    cout << "is eofbit set: "
         << ss.eof() << endl; 
  
    // Using clear() function 
    ss.clear(ss.eofbit); 
  
    cout << "clear() used to set eofbit "
         << endl; 
  
    // Print the result 
    cout << "is eofbit set: "
         << ss.eof() << endl; 
  
    return 0; 
}
输出:
is eofbit set: 0
clear() used to set eofbit 
is eofbit set: 1

示例2:

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

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



相关用法


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