Partilhar via


map::cend

Retorna um iterador de após -- final const.

const_iterator cend( ) const;

Valor de retorno

O iterador de depois de fim.Se map Class está vazia, em seguida map::cend() == map::begin().

Comentários

cend é usado para testar se um iterador passaram o final do seu map.

o valor retornado por cend não deve ser desreferenciado.

Exemplo

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

Cabeçalho: <map>

namespace: STD

Consulte também

Referência

map Class

Standard Template Library