Aracılığıyla paylaş


map::cbegin

Harita ilk öğe adresleme const bir yineleyici döndürür.

const_iterator cbegin( ) const; 

Dönüş Değeri

İlk öğe adresleme const bir çift yönlü Yineleyici map Class ya da izleyen boş yere map.

Açıklama

Dönüş değeri ile cbegin, öğeleri map nesnesi değiştirilemez.

Örnek

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

Gereksinimler

Başlık: <map>

Namespace: std

Ayrıca bkz.

Başvuru

map Class

Standart Şablon Kütüphanesi