次の方法で共有


hash_multiset::cbegin

[!メモ]

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

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

const_iterator cbegin( ) const;

戻り値

空の hash_multisetを成功させる hash_multiset Class の最初の要素または場所を指す定数の双方向反復子。

解説

cbeginの戻り値を使用して、hash_multiset のオブジェクト要素を変更できません。

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

使用例

// hash_multiset_cbegin.cpp
// compile with: /EHsc
#include <hash_multiset>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hs1;
   hash_multiset <int>::const_iterator hs1_cIter;
   
   hs1.insert( 1 );
   hs1.insert( 2 );
   hs1.insert( 3 );

   hs1_cIter = hs1.cbegin( );
   cout << "The first element of hs1 is " << *hs1_cIter << endl;
}
  

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_multiset Class

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