std::list<T,Allocator>::rend, std::list<T,Allocator>::crend

来自cppreference.com
< cpp‎ | container‎ | list

 
 
 
 
reverse_iterator rend();
(1) (C++11 起为 noexcept)
const_reverse_iterator rend() const;
(2) (C++11 起为 noexcept)
const_reverse_iterator crend() const noexcept;
(3) (C++11 起)

返回指向逆向的 list 末元素后一元素的逆向迭代器。它对应非逆向 list 首元素的前一元素。此元素表现为占位符,试图访问它导致未定义行为。

range-rbegin-rend.svg

参数

(无)

返回值

指向末元素后一元素的逆向迭代器。

复杂度

常数。

示例

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <list>
 
int main()
{
    std::list<int> nums{1, 2, 4, 8, 16};
    std::list<std::string> fruits{"orange", "apple", "raspberry"};
    std::list<char> empty;
 
    // 打印 list。
    std::for_each(nums.rbegin(), nums.rend(), [](const int n) { std::cout << n << ' '; });
    std::cout << '\n';
 
    // 求和 list nums 中的所有整数(若存在),仅打印结果。
    std::cout << "求和 nums: "
              << std::accumulate(nums.rbegin(), nums.rend(), 0) << '\n';
 
    // 打印 list fruits 中的第一个水果,不检查是否有一个。
    if (!fruits.empty())
        std::cout << "第一个水果: " << *fruits.rbegin() << '\n';
 
    if (empty.rbegin() == empty.rend())
        std::cout << "list 'empty' 确实是空的。\n";
}

输出:

16 8 4 2 1
求和 nums: 31
第一个水果: raspberry
list 'empty' 确实是空的。

参阅

返回指向起始的逆向迭代器
(公开成员函数)
(C++14)
返回容器或数组的逆向尾迭代器
(函数模板)