map::crend
逆順のマップに最後の要素の次の場所を指す定数反復子を返します。
const_reverse_iterator crend( ) const;
戻り値
逆順の map Class (通常 mapの最初の要素の前) に成功したする最後の要素の場所を指す定数逆順の双方向場所を反復子。
解説
crend は逆順のマップと map::end が mapで使用するように使用されます。
crend の戻り値で map オブジェクトを変更することはできません。
反転反復子が mapの最後に到達したかどうかをテストするためにcrend を使用できます。
crend によって返された値は逆参照しないでください。
使用例
// map_crend.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
map <int, int> m1;
map <int, int> :: const_reverse_iterator m1_crIter;
typedef pair <int, int> Int_Pair;
m1.insert ( Int_Pair ( 1, 10 ) );
m1.insert ( Int_Pair ( 2, 20 ) );
m1.insert ( Int_Pair ( 3, 30 ) );
m1_crIter = m1.crend( );
m1_crIter--;
cout << "The last element of the reversed map m1 is "
<< m1_crIter -> first << "." << endl;
}
必要条件
ヘッダー: <map>
名前空間: std