Udostępnij za pośrednictwem


list::cbegin

Zwraca iteratora const, adresowania pierwszy element na liście.

const_iterator cbegin( ) const;

Wartość zwracana

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

Uwagi

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

Przykład

// list_cbegin.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::const_iterator c1_cIter;
   
   c1.push_back( 1 );
   c1.push_back( 2 );

   c1_cIter = c1.cbegin( );
   cout << "The first element of c1 is " << *c1_cIter << endl;
}

Dane wyjściowe

The first element of c1 is 1

Wymagania

Nagłówek: <list>

Obszar nazw: std

Zobacz też

Informacje

list Class

Standardowa biblioteka szablonu