vector::crbegin
逆順のベクター内の最初の要素への定数反復子を返します。
const_reverse_iterator crbegin( ) const;
戻り値
逆順の vector Class の最初の要素に対応したり、通常の vector最後の要素では、アドレスの定数逆順ランダム アクセス反復子。
解説
crbegin の戻り値で vector オブジェクトを変更することはできません。
使用例
// vector_crbegin.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::iterator v1_Iter;
vector <int>::const_reverse_iterator v1_rIter;
v1.push_back( 1 );
v1.push_back( 2 );
v1_Iter = v1.begin( );
cout << "The first element of vector is "
<< *v1_Iter << "." << endl;
v1_rIter = v1.crbegin( );
cout << "The first element of the reversed vector is "
<< *v1_rIter << "." << endl;
}
必要条件
ヘッダー: <vector>
名前空間: std