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 类

标准模板库