set::end
セットに最後の要素の次の場所を指定する反復子を返します。
const_iterator end( ) const;
iterator end( );
戻り値
セットに最後の要素の次の場所を示す双方向反復子。セットが空の場合、set::end の ==set::begin。
解説
反復子がセットの末尾に到達したかどうかをテストするためにend が使用されます。end によって返される値は逆参照することはできません。
使用例
// set_end.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.end( );
s1_Iter--;
cout << "The last element of s1 is " << *s1_Iter << endl;
s1.erase( s1_Iter );
// The following 3 lines would err because the iterator is const
// s1_cIter = s1.end( );
// s1_cIter--;
// s1.erase( s1_cIter );
s1_cIter = s1.end( );
s1_cIter--;
cout << "The last element of s1 is now " << *s1_cIter << endl;
}
必要条件
ヘッダー: <set>
名前空間: std