次の方法で共有


hash_multiset::crbegin

[!メモ]

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

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

const_reverse_iterator crbegin( ) const;

戻り値

逆順の hash_multiset Class の最初の要素に対応したり、通常の hash_multiset最後の要素では、指す定数の順序の双方向反復子。

解説

crbegin は逆順の hash_multiset と hash_multiset::begin が hash_multisetで使用するように使用されます。

crbegin の戻り値で hash_multiset オブジェクトを変更することはできません。

hash_multiset によって逆方向の反復処理にcrbegin を使用できます。

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

使用例

// hash_multiset_crbegin.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_reverse_iterator hs1_crIter;

   hs1.insert( 10 );
   hs1.insert( 20 );
   hs1.insert( 30 );

   hs1_crIter = hs1.crbegin( );
   cout << "The first element in the reversed hash_multiset is "
        << *hs1_crIter << "." << endl;
}
  

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_multiset Class

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