Condividi tramite


basic_ios::setstate

Imposta flag aggiuntivi.

void setstate(
   iostate _State
);

Parametri

  • _State
    Flag aggiuntivi da impostare.

Note

La funzione membro effettivamente chiama deselezionare(_State | rdstate).

Esempio

// 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;
}
  

Requisiti

intestazione: <ios>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

basic_ios Class

programmazione di iostream

convenzioni di iostream