次の方法で共有


hash_set::crend

[!メモ]

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

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

const_reverse_iterator crend( ) const;

戻り値

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

解説

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

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

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

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

使用例

// hash_set_crend.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_set <int> hs1;
   hash_set <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_set is "
        << *hs1_crIter << "." << endl;
}
  

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_set Class

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