다음을 통해 공유


flush (표준 C++ 라이브러리)

버퍼를 플러시합니다.

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

매개 변수

  • _Elem
    요소 형식입니다.

  • _Ostr
    basic_ostream 형식의 개체입니다.

  • _Tr
    문자 특성입니다.

반환 값

basic_ostream 형식의 개체입니다.

설명

Manipulator 호출 _Ostr**.**flush.반환 _Ostr.

예제

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

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

요구 사항

헤더: <ostream>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙