命名空间
变体
操作

std::array<T,N>::rend, std::array<T,N>::crend

来自 cppreference.com
< cpp‎ | 容器‎ | 数组
 
 
 
 
reverse_iterator rend() noexcept;
(1) (自 C++11)
(自 C++17 起为 constexpr)
const_reverse_iterator rend() const noexcept;
(2) (自 C++11)
(自 C++17 起为 constexpr)
const_reverse_iterator crend() const noexcept;
(3) (自 C++11)
(自 C++17 起为 constexpr)

返回一个反向迭代器,指向反转后的 array 的最后一个元素后的元素。它对应于非反转 array 的第一个元素之前的元素。此元素充当占位符,尝试访问它会导致未定义的行为。

range-rbegin-rend.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向最后一个元素后的元素的反向迭代器。

[编辑] 复杂度

常数。

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <array>
 
int main()
{
    std::array<int, 11> a{1, 11, 11, 35, 0, 12, 79, 76, 76, 69, 40};
 
    // Print elements of container in reverse order using const_reverse_iterator's.
    std::for_each(a.crbegin(), a.crend(), [](int e){ std::cout << e << ' '; });
    std::cout << '\n';
 
    // Modify each element of container using non-const reverse_iterator's.
    std::for_each(a.rbegin(), a.rend(), [](int& e){ e += 32; });
 
    // Print elements as chars in reverse order using const_reverse_iterator's.
    std::for_each(a.crbegin(), a.crend(), [](char e){ std::cout << e; });
    std::cout << '\n';
}

输出

40 69 76 76 79 12 0 35 11 11 1
Hello, C++!

[编辑] 另请参阅

返回指向开头的反向迭代器
(公共成员函数) [编辑]
(C++14)
返回容器或数组的反向结束迭代器
(函数模板) [编辑]