共用方式為


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 程式設計

iostreams 慣例