flush(标准 C++ 库)

刷新缓冲区。

template class<_Elem, _Tr> 
   basic_ostream<_Elem, _Tr>&  
   flush(basic_ostream<_Elem, _Tr>& _Ostr
   );

参数

  • _Elem
    元素类型。

  • _Ostr
    basic_ostream 类型的对象。

  • _Tr
    性格字符。

返回值

basic_ostream 类型的对象。

备注

移动调用 ###. _Ostr刷新。 它返回 _Ostr。

示例

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

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

要求

页眉: <ostream>

命名空间: std

请参见

参考

iostream 编程

iostreams 约定