共用方式為


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 慣例