Namespaces
Variants

std::deque<T,Allocator>:: rbegin, std::deque<T,Allocator>:: crbegin

From cppreference.net

reverse_iterator rbegin ( ) ;
(1) (C++11부터 noexcept)
(C++26부터 constexpr)
const_reverse_iterator rbegin ( ) const ;
(2) (C++11부터 noexcept)
(C++26부터 constexpr)
const_reverse_iterator crbegin ( ) const noexcept ;
(3) (C++11부터)
(C++26부터 constexpr)

역순으로 바뀐 * this 의 첫 번째 요소를 가리키는 역방향 반복자를 반환합니다. 이는 역순으로 바뀌지 않은 * this 의 마지막 요소에 해당합니다.

만약 * this 가 비어 있으면, 반환된 반복자는 rend() 와 같습니다.

range-rbegin-rend.svg

목차

반환값

첫 번째 요소로의 역방향 반복자.

복잡도

상수.

참고 사항

반환된 역방향 반복자의 기반 반복자 end 반복자 입니다. 따라서 end 반복자가 무효화될 때 반환된 반복자도 함께 무효화됩니다.

libc++ 백포트가 crbegin() 를 C++98 모드로 이식합니다.

예제

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

출력:

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

참고 항목

(C++11)
역방향 끝 반복자를 반환합니다
(public member function)
컨테이너나 배열의 역방향 시작 반복자를 반환합니다
(function template)