basic_ostream::flush

刷新缓冲区。

basic_ostream<_Elem, _Tr>& flush( );

返回值

为basic_ostream对象的引用。

备注

如果 rdbuf 不是null指针,函数调用 rdbuf->pubsync。如果该返回-1;函数调用 setstate(badbit)。它返回 *this

示例

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

int main( ) 
{
   using namespace std;
   cout << "test";
   cout.flush();
}
  

要求

标头: <ostream>

命名空间: std

请参见

参考

basic_ostream Class

iostream编程

(mfc)约定