Udostępnij za pośrednictwem


multimap::cbegin

Zwraca iteratora const, adresowania pierwszy element w Mapa wielokrotnego dopasowania.

const_iterator cbegin( ) const;

Wartość zwracana

Const iteratora dwukierunkowy adresowania pierwszy element w multimap Class lub lokalizacji kolejnego pustego multimap.

Uwagi

Zwracana wartość cbegin, elementy w multimap obiektu nie można modyfikować.

Przykład

// multimap_cbegin.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 ( 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;
   }
  

Wymagania

Nagłówek: <map>

Obszar nazw: std

Zobacz też

Informacje

multimap Class

Standardowa biblioteka szablonu