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


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


C++中的ios類的good()方法用於檢查流是否足以正常工作。這意味著該函數將檢查此流是否引發了任何錯誤。

用法:

bool good() const;

參數:此方法不接受任何參數。


返回值:如果流是好的,則此方法返回true,否則返回false。

示例1:

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

示例2:

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

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



相關用法


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