Aracılığıyla paylaş


basic_ios::setstate

Ek bayrakları ayarlar.

void setstate(
   iostate _State
);

Parametreler

  • _State
    Ek bayrakları ayarlayın.

Notlar

Etkin üye işlevi çağıran temizlemek(_durumu | rdstate).

Örnek

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

Gereksinimler

Başlık: <ios>

Namespace: std

Ayrıca bkz.

Başvuru

basic_ios Class

iostream programlama

iostreams kuralları