次の方法で共有


basic_ios::operator!

ストリームが悪くなければ示します。

bool operator!( ) const;

戻り値

失敗を返します。

使用例

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

int main( ) 
{
   using namespace std;
   cout << !cout << endl;   // Stream is not bad 
}
  

必要条件

ヘッダー: <ios>

名前空間: std

参照

関連項目

basic_ios Class

入出力ストリームのプログラミング

入出力ストリームの規則