Compartir a través de


map::cend

Devuelve un iterador de la más allá -- FIN const.

const_iterator cend( ) const;

Valor devuelto

el iterador de la más allá--FIN.Si map Class está vacío, a continuación map::cend() == map::begin().

Comentarios

cend se utiliza para probar si un iterador ha pasado el final de la map.

El valor devuelto por cend no debe ser administrada.

Ejemplo

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

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

   map <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 the last element of m1 is:\n" 
        << m1_cIter -> second << endl;
}
  

Requisitos

encabezado: <Asignar>

espacio de nombres: std

Vea también

Referencia

map Class

Biblioteca de plantillas estándar