Compartilhar via


map::cbegin

Retorna um iterador const que trata o primeiro elemento no mapa.

const_iterator cbegin( ) const; 

Valor de retorno

Um iterador bidirecional const que trata o primeiro elemento em map Class ou o local que são bem-sucedidas mapvazia.

Comentário

Com o valor de retorno de cbegin, os elementos no objeto de map não podem ser alterados.

Exemplo

// map_cbegin.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 ( 0, 0 ) );
   m1.insert ( Int_Pair ( 1, 1 ) );
   m1.insert ( Int_Pair ( 2, 4 ) );

   m1_cIter = m1.cbegin ( );
   cout << "The first element of m1 is " << m1_cIter -> first << endl;
   }
  

Requisitos

Cabeçalho: <map>

namespace: STD

Consulte também

Referência

map Class

Standard Template Library