array::crend

返回最后一个元素成功解决的位置处于已撤消数组的 const 迭代器。

const_reverse_iterator crend( ) const;

返回值

最后一个元素成功解决的位置处于已撤消数组的 const 撤消随机访问迭代器 (在前面 unreversed 数组的第一个元素) 的位置。

备注

正值 array::cend 使用数组,crend 使用的反转数组。

返回值 crend (适当递减),无法修改对象数组。

crend 可用于测试对进行反向迭代器数组是否到达其的末尾。

不应取消crend 返回的值。

示例

// array_crend.cpp
// compile with: /EHsc
#include <array>
#include <iostream>

int main( )
{
   using namespace std;   
   array<int, 2> v1 = {1, 2};
   array<int, 2>::const_reverse_iterator v1_rIter;
   
   for ( v1_rIter = v1.rbegin( ) ; v1_rIter != v1.rend( ) ; v1_rIter++ )
      cout << *v1_rIter << endl;
}
  

要求

数组页眉: <>

命名空间: std

请参见

参考

<array>

array 类 (STL)

标准模板库