hash_map::find
[!メモ]
この API は、互換性のために残されています。代わりに unordered_map クラスです。
指定したキーと同じキーを持つhash_mapに要素の位置を指定する反復子を返します。
iterator find(
const Key& _Key
);
const_iterator find(
const Key& _Key
) const;
パラメーター
- _Key
検索hash_mapからの要素の並べ替えキーが一致するキー値。
戻り値
一致するキーにある指定したキーを持つ要素の位置を指定する反復子、またはhash_mapに最後の要素の次の場所。
解説
find には、並べ替えキーが比較可能な関係によりも少ない基づいて命令を引き起こすバイナリ述語の下の引数のキーと同じであるhash_mapの要素を指定する反復子を返します。
find の戻り値が const_iteratorに割り当てられている場合、hash_mapのオブジェクトは変更できません。find の戻り値が [iterator]に割り当てられている場合、hash_mapのオブジェクトを変更することができます
Visual C++ .NET 2003では、<hash_map> と <hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。
使用例
// hash_map_find.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map <int, int> hm1;
hash_map <int, int> :: const_iterator hm1_AcIter, hm1_RcIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 1, 10 ) );
hm1.insert ( Int_Pair ( 2, 20 ) );
hm1.insert ( Int_Pair ( 3, 30 ) );
hm1_RcIter = hm1.find( 2 );
cout << "The element of hash_map hm1 with a key of 2 is: "
<< hm1_RcIter -> second << "." << endl;
// If no match is found for the key, end( ) is returned
hm1_RcIter = hm1.find( 4 );
if ( hm1_RcIter == hm1.end( ) )
cout << "The hash_map hm1 doesn't have an element "
<< "with a key of 4." << endl;
else
cout << "The element of hash_map hm1 with a key of 4 is: "
<< hm1_RcIter -> second << "." << endl;
// The element at a specific location in the hash_map can be found
// using a dereferenced iterator addressing the location
hm1_AcIter = hm1.end( );
hm1_AcIter--;
hm1_RcIter = hm1.find( hm1_AcIter -> first );
cout << "The element of hm1 with a key matching "
<< "that of the last element is: "
<< hm1_RcIter -> second << "." << endl;
}
必要条件
ヘッダー: <hash_map>
名前空間: のstdext