다음을 통해 공유


endl

줄을 종료 하 고 버퍼를 플러시합니다.

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

매개 변수

  • _Elem
    요소 형식입니다.

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

  • _Tr
    문자 특성입니다.

반환 값

basic_ostream 형식의 개체입니다.

설명

Manipulator 호출 _Ostr**.put(_Ostr.** widen('\n')), and then calls _Ostr**.**flush.반환 _Ostr.

예제

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

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

요구 사항

헤더: <ostream>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙