basic_ios::setstate
追加のフラグを設定します。
void setstate(
iostate _State
);
パラメーター
- _State
配置する追加のフラグ。
解説
メンバー関数は、[クリア] (_State を呼び出します。 |rdstate)。
使用例
// basic_ios_setstate.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
using namespace std;
int main( )
{
bool b = cout.bad( );
cout << b << endl; // Good
cout.clear( ios::badbit );
b = cout.bad( );
// cout.clear( );
cout << b << endl; // Is bad, good
b = cout.fail( );
cout << b << endl; // Not failed
cout.setstate( ios::failbit );
b = cout.fail( );
cout.clear( );
cout << b << endl; // Is failed, good
return 0;
}
必要条件
ヘッダー: <ios>
名前空間: std