共用方式為


array::rend

指定已還原的受控制序列結尾。

reverse_iterator rend();
const_reverse_iterator rend() const;

備註

成員函式傳回的序列中的第一個項目的反向 Iterator (或超出空序列的結尾)。 因此,它會指定反向序列的結尾。

範例

 

// std_tr1__array__array_rend.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 first element " 0" 
    Myarray::const_reverse_iterator it2 = c0.rend(); 
    std::cout << " " << *--it2; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <陣列>

命名空間: std

請參閱

參考

<array>

array 類別 (STL)

array::begin

array::end

array::rbegin