set::begin
セットの最初の要素を指定する反復子を返します。
const_iterator begin( ) const;
iterator begin( );
戻り値
空のセットを成功させるセットの最初の要素または位置をアドレス双方向反復子。
解説
begin の戻り値が const_iteratorに割り当てられている場合は、特定のオブジェクト要素を変更できません。begin の戻り値が **[反復子]**に割り当てられている場合は、特定のオブジェクト要素を変更できます。
使用例
// 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;
}
必要条件
ヘッダー: <set>
名前空間: std