描述
C++ 函数std::array::crbegin()返回一个指向数组最后一个元素的常量反向迭代器。
声明
以下是 std::array::crbegin() 函数形式 std::array 标头的声明。
const_reverse_iterator crbegin() const noexcept;
参数
空
返回值
返回指向数组最后一个元素的常量反向迭代器。此方法返回的迭代器正好位于成员函数 end 指向的元素之前。换句话说,它返回一个常量反向迭代器,它指向反向数组容器的第一个元素。
异常
此成员函数从不抛出异常。
时间复杂度
常数,即 O(1)
示例
让我们看看如何使用反向迭代器逆序打印数组内容。
#include <iostream>
#include <array>
using namespace std;
int main(void) {
array<int, 5> arr = {10, 20, 30, 40, 50};
/* We can only iterate container by using it */
/* Any attemp to modify value pointed by iterator will cause compliation error */
for (auto it = arr.crbegin(); it != arr.crend(); ++it)
cout << *it << " ";
cout << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果——
50 40 30 20 10
相关用法
- C++ Array crend()用法及代码示例
- C++ Array cbegin()用法及代码示例
- C++ Array cend()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ Array max_size()用法及代码示例
- C++ Array get()用法及代码示例
- C++ Array back()用法及代码示例
- C++ Array data()用法及代码示例
- C++ Array empty()用法及代码示例
- C++ Array tuple_size()用法及代码示例
- C++ Array fill()用法及代码示例
- C++ Array at()用法及代码示例
- C++ Array end()用法及代码示例
- C++ Array rbegin()用法及代码示例
- C++ Array begin()用法及代码示例
- C++ Array size()用法及代码示例
- C++ Array rend()用法及代码示例
- C++ Array front()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Array Library - crbegin() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。