flush (Standard 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