hash_multimap::find
[!참고]
이 API는 사용되지 않습니다.대신 unordered_multimap Class.
첫 번째 위치에서 지정 된 키에 해당 하는 키가 있는 hash_multimap의 요소를 가리키는 반복기를 반환 합니다.
iterator find(
const Key& _Key
);
const_iterator find(
const Key& _Key
) const;
매개 변수
- _Key
정렬 키의 요소를 검색 하 고 hash_multimap에서 일치 하는 키입니다.
반환 값
요소의 첫 번째 위치에 지정 된 키 또는 키에 일치 항목이 없을 경우 마지막 요소에는 hash_multimap 다음에 나오는 위치와 주소를 지정 하는 반복기입니다.
설명
멤버 함수 정렬 키가 hash_multimap의 요소를 해결 하는 반복기를 반환 합니다. 해당 하는 비교가 관계 보다 키 아래 첫 순서는 이진 조건부 인수에 기반 합니다.
경우 반환 값을 찾기 배정은 const_iterator, hash_multimap 개체를 수정할 수 없습니다.경우의 반환 값 찾기 에 할당 되는 반복기, hash_multimap 개체를 수정할 수 있습니다.
Visual C++.NET 2003 멤버는 <hash_map> 및 <hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.
예제
// hash_multimap_find.cpp
// compile with: /EHsc
#include <iostream>
#include <hash_map>
int main()
{
using namespace std;
using namespace stdext;
hash_multimap<int, int> hm1;
hash_multimap<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, 20));
hm1.insert(Int_Pair(3, 30));
hm1_RcIter = hm1.find(2);
cout << "The element of hash_multimap hm1 with a key of 2 is: "
<< hm1_RcIter -> second << "." << endl;
hm1_RcIter = hm1.find(3);
cout << "The first element of hash_multimap hm1 with a key of 3 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_multimap hm1 doesn't have an element "
<< "with a key of 4." << endl;
else
cout << "The element of hash_multimap hm1 with a key of 4 is: "
<< hm1_RcIter -> second << "." << endl;
// The element at a specific location in the hash_multimap 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 first element of hm1 with a key matching"
<< endl << "that of the last element is: "
<< hm1_RcIter -> second << "." << endl;
// Note that the first element with a key equal to
// the key of the last element is not the last element
if (hm1_RcIter == --hm1.end())
cout << "This is the last element of hash_multimap hm1."
<< endl;
else
cout << "This is not the last element of hash_multimap hm1."
<< endl;
}
요구 사항
헤더: <hash_map>
네임 스페이스: stdext