Freigeben über


basic_ios::setstate

Legt zusätzliche Kennzeichen fest.

void setstate( 
   iostate _State 
);

Parameter

  • _State
    Zusätzliche Flags zum festzulegen.

Hinweise

Die Memberfunktion wird effektiv nicht aktiviert auf (_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-Klasse

iostream-Programmierung

iostreams-Konventionen