次の方法で共有


hash_multiset::crend

[!メモ]

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

逆順のhash_multisetに最後の要素の次の場所を指す定数反復子を返します。

const_reverse_iterator crend( ) const;

戻り値

逆順の hash_multiset Class (通常 hash_multisetの最初の要素の前) に成功したする最後の要素の場所を指す定数逆順の双方向場所を反復子。

解説

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

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

反転反復子がhash_multisetの末尾に到達したかどうかをテストするためにcrend を使用できます。

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

使用例

// hash_multiset_crend.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.crend( );
   hs1_crIter--;
   cout << "The last element in the reversed hash_multiset is "
        << *hs1_crIter << "." << endl;
}
  

必要条件

ヘッダー: <hash_multiset>

名前空間: のstdext

参照

関連項目

hash_multiset Class

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