當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。