Freigeben über


basic_ios::bad

Gibt ein Verlust der Integrität des Streampuffers an

bool bad( ) const;

Rückgabewert

true, wenn rdstate & badbit nicht 0 ist; andernfalls false.

Weitere Information zu badbit finden Sie unter ios_base::iostate.

Beispiel

// basic_ios_bad.cpp
// compile with: /EHsc
#include <iostream>

int main( void ) 
{
   using namespace std;
   bool b = cout.bad( );
   cout << boolalpha;
   cout << b << endl;

   b = cout.good( );
   cout << b << endl;
}

Ausgabe

false
true

Anforderungen

Header: <IOS>

Namespace: std

Siehe auch

Referenz

basic_ios-Klasse

iostream-Programmierung

iostreams-Konventionen