hash_multimap::lower_bound (STL/CLR)
검색 시작에 지정 된 키와 일치 하는 범위입니다.
iterator lower_bound(key_type key);
매개 변수
- 키
검색할 키 값입니다.
설명
멤버 함수는 첫 번째 요소를 결정 합니다. X 는 해시 하기 같은 통으로 제어 되는 시퀀스에서 key 과 동일한 순서에 있는 key.이러한 요소가 있는지 반환 hash_multimap::end (STL/CLR)(). 지정 하는 반복기 iferror X.제어 시퀀스에서 지정 된 키와 일치 하는 현재 요소의 시퀀스의 시작 부분을 찾으려면 사용 합니다.
예제
// cliext_hash_multimap_lower_bound.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_multimap<wchar_t, int> Myhash_multimap;
int main()
{
Myhash_multimap c1;
c1.insert(Myhash_multimap::make_value(L'a', 1));
c1.insert(Myhash_multimap::make_value(L'b', 2));
c1.insert(Myhash_multimap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Myhash_multimap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
System::Console::WriteLine("lower_bound(L'x')==end() = {0}",
c1.lower_bound(L'x') == c1.end());
Myhash_multimap::iterator it = c1.lower_bound(L'a');
System::Console::WriteLine("*lower_bound(L'a') = [{0} {1}]",
it->first, it->second);
it = c1.lower_bound(L'b');
System::Console::WriteLine("*lower_bound(L'b') = [{0} {1}]",
it->first, it->second);
return (0);
}
요구 사항
헤더: < cliext/hash_map >
네임 스페이스: cliext
참고 항목
참조
hash_multimap::count (STL/CLR)