hash_multiset::end
[!メモ]
この API は、互換性のために残されています。代わりに unordered_multiset クラスです。
hash_multisetに最後の要素の次の場所を指定する反復子を返します。
const_iterator end( ) const;
iterator end( );
戻り値
hash_multisetに最後の要素の次の場所を示す双方向反復子。hash_multisetが空の場合、hash_multiset::endの==のhash_multiset::begin。
解説
反復子がhash_multisetの末尾に到達したかどうかをテストするためにend が使用されます。end によって返される値は逆参照することはできません。
Visual C++ .NET 2003では、<hash_map> と <hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。
使用例
// hash_multiset_end.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hash_multiset <int> :: iterator hms1_Iter;
hash_multiset <int> :: const_iterator hms1_cIter;
hms1.insert( 1 );
hms1.insert( 2 );
hms1.insert( 3 );
hms1_Iter = hms1.end( );
hms1_Iter--;
cout << "The last element of hms1 is " << *hms1_Iter << endl;
hms1.erase( hms1_Iter );
// The following 3 lines would err because the iterator is const
// hms1_cIter = hms1.end( );
// hms1_cIter--;
// hms1.erase( hms1_cIter );
hms1_cIter = hms1.end( );
hms1_cIter--;
cout << "The last element of hms1 is now " << *hms1_cIter << endl;
}
必要条件
ヘッダー: <hash_set>
名前空間: のstdext