次の方法で共有


hash_multiset::begin

[!メモ]

この API は、互換性のために残されています。代わりに unordered_multiset クラスです。

hash_multisetの最初の要素を指定する反復子を返します。

const_iterator begin( ) const; 
iterator begin( );

戻り値

空のhash_multisetを成功させるhash_multisetの最初の要素または位置をアドレス双方向反復子。

解説

begin の戻り値が const_iteratorに割り当てられている場合、hash_multisetのオブジェクト要素を変更できません。begin の戻り値が **[iterator]**に割り当てられている場合、hash_multisetのオブジェクト要素を変更できます。

Visual C++ .NET 2003では、<hash_map><hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。

使用例

// hash_multiset_begin.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.begin( );
   cout << "The first element of hms1 is " << *hms1_Iter << endl;

   hms1_Iter = hms1.begin( );
   hms1.erase( hms1_Iter );

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

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

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_multiset Class

標準テンプレート ライブラリ