다음을 통해 공유


end

반복기를 지정 된 컨테이너의 마지막 요소 다음에 오는 요소를 검색 합니다.

template<class Container>
    auto end(Container& cont) 
        -> decltype(cont.end());
template<class Container>
    auto end(const Container& cont) 
        -> decltype(cont.end());
template<class Ty, class Size>
    Ty *end(Ty (&array)[Size]); 

매개 변수

  • cont
    컨테이너입니다.

  • array
    개체 형식의 배열을 Ty.

반환 값

첫 번째 두 템플릿 함수를 반환 합니다. cont.end().

세 번째 템플릿 함수를 반환 합니다. &array[Size].

요구 사항

헤더: <iterator>

네임 스페이스: std

참고 항목

참조

<iterator>

begin