次の方法で共有


ostreambuf_iterator::failed

出力ストリームのバッファーに挿入の失敗のテスト。

bool failed( ) const throw( );

戻り値

出力ストリームのバッファーに挿入しますが、前に失敗しないtrue ; それ false

解説

このメンバー関数は、**operator=**メンバーの前の使用で、subfの _->sputc の呼び出しが eofを返す true を返します。

使用例

// ostreambuf_iterator_failed.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   // ostreambuf_iterator for stream cout
   ostreambuf_iterator<char> charOut ( cout );
   
   *charOut = 'a';
   charOut ++;
   *charOut  = 'b';
   charOut ++;   
   *charOut = 'c';
   cout << " are characters output individually." << endl;

   bool b1 = charOut.failed ( );
   if (b1) 
       cout << "At least one insertion failed." << endl;
   else
       cout << "No insertions failed." << endl;
}
  
  

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

ostreambuf_iterator Class

標準テンプレート ライブラリ