Aracılığıyla paylaş


map::crbegin

Tersine çevrilmiş bir harita ilk öğe adresleme const bir yineleyici döndürür.

const_reverse_iterator crbegin( ) const;

Dönüş Değeri

Bir const ilk öğe tersine çevrilmiş bir adresleme çift yönlü Yineleyici ters map Class ya da unreversed son öğe silinmiş adresleme map.

Notlar

crbeginkullanılan bir ters işlem ile map gibi map::begin ile kullanılan bir map.

Dönüş değeri ile crbegin, map nesnesi değiştirilemez

crbeginboyunca yineleme yapmak için kullanılan bir map geriye doğru.

Örnek

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

Gereksinimler

Başlık: <map>

Namespace: std

Ayrıca bkz.

Başvuru

map Class

Standart Şablon Kütüphanesi