次の方法で共有


multimap::crbegin

逆順の multimap の最初の要素を指す定数反復子を返します。

const_reverse_iterator crbegin( ) const;

戻り値

逆順の multimap Class の最初の要素に対応したり、通常の multimap最後の要素では、指す定数の順序の双方向反復子。

解説

crbegin は逆順の multimap と 開始します。 が multimapで使用するように使用されます。

crbegin の戻り値で multimap オブジェクトを変更することはできません。

multimap によって逆方向の反復処理にcrbegin を使用できます。

使用例

// multimap_crbegin.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   multimap <int, int> m1;

   multimap <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.crbegin( );
   cout << "The first element of the reversed multimap m1 is "
        << m1_crIter -> first << "." << endl;
}
  

必要条件

ヘッダー: <map>

名前空間: std

参照

関連項目

multimap Class

標準テンプレート ライブラリ