array::rend
反転被制御シーケンスの末尾を指定します。
reverse_iterator rend();
const_reverse_iterator rend() const;
解説
このメンバー関数は、シーケンスの最初の要素 (または空のシーケンスの末尾の次の位置) を指し示す反転反復子を返します。したがって、これは反転シーケンスの最後を指定します。
使用例
// 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);
}
必要条件
ヘッダー : <array>
名前空間: std