multimap::cend
Restituisce un iteratore const destinato alla posizione che è l'ultimo elemento a multimap.
const_iterator cend( ) const;
Valore restituito
Un iteratore bidirezionale const destinato alla posizione che è l'ultimo elemento a multimap Class.Se multimap è vuoto, quindi multimap::cend == multimap::begin.
Note
cend viene utilizzato per verificare se un iteratore raggiunge la fine del multimap.
Il valore restituito da cend non è possibile dereferenziare.
Esempio
// multimap_cend.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
multimap <int, int> m1;
multimap <int, int> :: const_iterator m1_cIter;
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_cIter = m1.cend( );
m1_cIter--;
cout << "The value of last element of m1 is "
<< m1_cIter -> second << endl;
}
Requisiti
intestazione: <map>
Spazio dei nomi: deviazione standard