Namespaces
Variants

std::vector<T,Allocator>:: end, std::vector<T,Allocator>:: cend

From cppreference.net

iterator end ( ) ;
(1) (C++11부터 noexcept)
(C++20부터 constexpr)
const_iterator end ( ) const ;
(2) (C++11부터 noexcept)
(C++20부터 constexpr)
const_iterator cend ( ) const noexcept ;
(3) (C++11부터)
(C++20부터 constexpr)

* this 의 마지막 요소 바로 다음을 가리키는 반복자를 반환합니다.

이 반환된 반복자는 단지 센티넬 역할만 합니다. 이것이 dereferenceable 하다는 보장은 없습니다.

range-begin-end.svg

목차

반환값

마지막 요소의 다음을 가리키는 반복자.

복잡도

상수.

참고 사항

libc++ 백포트는 cend() 를 C++98 모드로 지원합니다.

예제

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <vector>
int main()
{
    std::vector<int> nums{1, 2, 4, 8, 16};
    std::vector<std::string> fruits{"orange", "apple", "raspberry"};
    std::vector<char> empty;
    // 벡터 출력
    std::for_each(nums.begin(), nums.end(), [](const int n) { std::cout << n << ' '; });
    std::cout << '\n';
    // 벡터 nums의 모든 정수를 합산하여 결과만 출력
    std::cout << "Sum of nums: "
              << std::accumulate(nums.begin(), nums.end(), 0) << '\n';
    // 벡터 fruits의 첫 번째 과일을 출력하며 존재 여부 확인
    if (!fruits.empty())
        std::cout << "First fruit: " << *fruits.begin() << '\n';
    if (empty.begin() == empty.end())
        std::cout << "vector 'empty' is indeed empty.\n";
}

출력:

1 2 4 8 16
Sum of nums: 31
First fruit: orange
vector 'empty' is indeed empty.

참고 항목

시작 부분을 가리키는 반복자를 반환함
(public member function)
(C++11) (C++14)
컨테이너나 배열의 끝을 가리키는 반복자를 반환함
(function template)