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


C++ ios setstate()用法及代碼示例


C++中的ios類的setstate()方法用於通過設置作為參數傳遞的標誌來更改此流的當前狀態。因此,此函數更改此流的內部狀態。

用法:

void setstate(iostate state)

參數:此方法接受iostate作為參數,該參數是要在此流中設置的goodbit,failbit,eofbit和badbit標誌的組合。


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

示例1:

// C++ code to demonstrate 
// the working of setstate() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 1 
    stringstream ss; 
    ss.clear(ss.goodbit); 
  
    // Stream 2 
    stringstream ss2; 
    cout << "current stream: " << ss2.rdstate() << endl; 
  
    // Using setstate() function 
    ss2.setstate(ss.rdstate()); 
  
    // Print the result 
    cout << "updated stream: " << ss2.rdstate() << endl; 
  
    return 0; 
}
輸出:
current stream: 0
updated stream: 0

示例2:

// C++ code to demonstrate 
// the working of setstate() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Stream 1 
    stringstream ss; 
    ss.clear(ss.failbit); 
  
    // Stream 2 
    stringstream ss2; 
    cout << "current stream: " << ss2.rdstate() << endl; 
  
    // Using setstate() function 
    ss2.setstate(ss.rdstate()); 
  
    // Print the result 
    cout << "updated stream: " << ss2.rdstate() << endl; 
  
    return 0; 
}
輸出:
current stream: 0
updated stream: 4

參考: hhttp://www.cplusplus.com/reference/ios/ios/setstate/



相關用法


注:本文由純淨天空篩選整理自guptayashgupta53大神的英文原創作品 ios setstate() function in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。