Aracılığıyla paylaş


map::crend

Tersine çevrilmiş bir harita son öğe izleyen konumuna gideren const bir yineleyici döndürür.

const_reverse_iterator crend( ) const;

Dönüş Değeri

Bir const izleyen son öğe tersine çevrilmiş bir konum adresleri çift yönlü Yineleyici ters map Class (ilk öğe unreversed önünde konumu map).

Notlar

crendtersine çevrilmiş bir harita ile kullanılan gibi map::end ile kullanılan bir map.

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

crendters bir yineleyici mi sonuna kadar ulaştığı için test etmek için kullanılan, map.

Tarafından döndürülen değeri crend başvuru değil yapıldı.

Örnek

// 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;
}
  

Gereksinimler

Başlık: <map>

Namespace: std

Ayrıca bkz.

Başvuru

map Class

Standart Şablon Kütüphanesi