ends (표준 C++ 라이브러리)
문자열을 종료합니다.
template class<_Elem, _Tr>
basic_ostream<_Elem, _Tr>& ends(
basic_ostream<_Elem, _Tr>& _Ostr
);
매개 변수
_Elem
요소 형식입니다._Ostr
basic_ostream 형식의 개체입니다._Tr
문자 특성입니다.
반환 값
basic_ostream 형식의 개체입니다.
설명
Manipulator 호출 _Ostr**.put(_Elem('\0'**)).이 반환합니다._Ostr.
예제
// ostream_ends.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << "a";
cout << "b" << ends;
cout << "c" << endl;
}
요구 사항
헤더: <ostream>
네임 스페이스: std