共用方式為


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

需求

標頭:<迭代器>

命名空間: std

請參閱

參考

ostreambuf_iterator 類別

標準樣板程式庫