basic_ios::setstate
Ustawia flagi dodatkowe.
void setstate(
iostate _State
);
Parametry
- _State
Ustawić dodatkowe flagi.
Uwagi
Wywołuje funkcję Członkowskie Wyczyść(_Państwo | rdstate).
Przykład
// 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;
}
Wymagania
Nagłówek: <ios>
Obszar nazw: std