basic_ios::setstate

Legt zusätzliche Flags fest.

void setstate(
   iostate _State
);

Parameter

  • _State
    Zusätzliche Flags festzulegen.

Hinweise

Die Memberfunktion ruft effektiv Durch Deaktivieren an (_State | rdstate).

Beispiel

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

Anforderungen

Header: <ios>

Namespace: std

Siehe auch

Referenz

basic_ios Class

Programmierung der iostream-Headerdatei

iostreams Konventionen