array::rbegin
指定已還原的受控制序列開頭。
reverse_iterator rbegin();
const_reverse_iterator rbegin() const;
備註
成員函式傳回在受控制序列之結尾點的反向 Iterator。 因此,它會指定反向序列的開頭。
範例
// 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