次の方法で共有


hash_set::find

[!メモ]

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

指定したキーと同じキーを持つhash_setに要素の位置を指定する反復子を返します。

iterator find(
   const Key& _Key
);
const_iterator find(
   const Key& _Key
) const;

パラメーター

  • _Key
    検索hash_setからの要素の並べ替えキーが一致する引数のキー。

戻り値

[iterator]const_iterator 一致するキーにある指定したキーと同等の要素の位置に対応したりhash_setに最後の要素の次の場所をアドレス。

解説

このメンバー関数は、並べ替えキーが比較可能な関係も少ないに基づいて命令を引き起こすバイナリ述語の下にある引数のキーへ equivalent であるhash_setの要素を指定する反復子を返します。

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

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

使用例

// hash_set_find.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_iterator hs1_AcIter, hs1_RcIter;
   
   hs1.insert( 10 );
   hs1.insert( 20 );
   hs1.insert( 30 );

   hs1_RcIter = hs1.find( 20 );
   cout << "The element of hash_set hs1 with a key of 20 is: "
        << *hs1_RcIter << "." << endl;

   hs1_RcIter = hs1.find( 40 );

   // If no match is found for the key, end( ) is returned
   if ( hs1_RcIter == hs1.end( ) )
      cout << "The hash_set hs1 doesn't have an element "
           << "with a key of 40." << endl;
   else
      cout << "The element of hash_set hs1 with a key of 40 is: "
           << *hs1_RcIter << "." << endl;

   // The element at a specific location in the hash_set can be found 
   // by using a dereferenced iterator addressing the location
   hs1_AcIter = hs1.end( );
   hs1_AcIter--;
   hs1_RcIter = hs1.find( *hs1_AcIter );
   cout << "The element of hs1 with a key matching "
        << "that of the last element is: "
        << *hs1_RcIter << "." << endl;
}
  
  
  

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_set Class

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