array::rbegin

指定反转的受控序列的开头。

reverse_iterator rbegin();
const_reverse_iterator rbegin() const;

备注

成员函数返回序列仅控制。结束点的反向迭代器。 因此,它指定顺序反向的开头。

示例

 

// std_tr1__array__array_rbegin.cpp 
// compile with: /EHsc 
#include <array> 
#include <iostream> 
 
typedef std::array<int, 4> Myarray; 
int main() 
    { 
    Myarray c0 = {0, 1, 2, 3}; 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
// display last element " 3" 
    Myarray::const_reverse_iterator it2 = c0.rbegin(); 
    std::cout << " " << *it2; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

要求

数组页眉: <>

命名空间: std

请参见

参考

<array>

array 类 (STL)

array::begin

array::end

array::rend