Sdílet prostřednictvím


set::begin

Vrátí iterátoru, který řeší první prvek v sadě.

const_iterator begin( ) const; 
iterator begin( );

Vrácená hodnota

Adresování první prvek v sadě nebo umístění následných Prázdná množina iterační obousměrné.

Poznámky

Pokud vrácenou hodnotu začít je přiřazen const_iterator, prvků v nastavení objektu nelze změnit.Pokud vrácenou hodnotu začít je přiřazen iterační, prvků v objektu sady lze upravit.

Příklad

// set_begin.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   set <int> s1;
   set <int>::iterator s1_Iter;
   set <int>::const_iterator s1_cIter;
   
   s1.insert( 1 );
   s1.insert( 2 );
   s1.insert( 3 );

   s1_Iter = s1.begin( );
   cout << "The first element of s1 is " << *s1_Iter << endl;

   s1_Iter = s1.begin( );
   s1.erase( s1_Iter );

   // The following 2 lines would err because the iterator is const
   // s1_cIter = s1.begin( );
   // s1.erase( s1_cIter );

   s1_cIter = s1.begin( );
   cout << "The first element of s1 is now " << *s1_cIter << endl;
}
  

Požadavky

Záhlaví: <set>

Obor názvů: std

Viz také

Referenční dokumentace

set Class

set::swap, set::begin, a set::end

Standardní šablona knihovny