hash_multimap::value_comp
[!참고]
이 API는 사용되지 않습니다.대신 unordered_multimap Class.
멤버 함수는 hash_multimap에서 요소의 순서는 키 값을 비교 하 여 결정 하는 함수 개체를 반환 합니다.
value_compare value_comp( ) const;
반환 값
Hash_multimap를 사용 하 여 요소를 정렬 하는 비교 함수 개체를 반환 합니다.
설명
Hash_multimap에 대 한 m경우 두 요소 e1 (k1*, d1) 및 e2 (k2, d2) 형식의 개체는 value_type, k1 및 k2는 자신의 키 입력의 key_type 및 d1 및 d2는 해당 데이터 형식의 mapped_type, 다음 달력이value_comp( )(e1, e*2) is equivalent to m.key_comp( ) (k1, k2).멤버 함수는 저장 된 개체를 정의합니다.
부울 연산자(value_type &_Left, value_type & _Right);
반환 true 경우 키 값을 _Left 앞에 표시 하 고 키 값을 1이 아닌 _Right 정렬 순서에서입니다.
Visual C++.NET 2003 멤버는 <hash_map> 및 <hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.
예제
// hash_multimap_value_comp.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multimap <int, int, hash_compare<int, less<int> > > hm1;
hash_multimap <int, int, hash_compare<int, less<int> >
>::value_compare vc1 = hm1.value_comp( );
hash_multimap <int,int>::iterator Iter1, Iter2;
Iter1= hm1.insert ( hash_multimap <int, int> :: value_type ( 1, 10 ) );
Iter2= hm1.insert ( hash_multimap <int, int> :: value_type ( 2, 5 ) );
if( vc1( *Iter1, *Iter2 ) == true )
{
cout << "The element ( 1,10 ) precedes the element ( 2,5 )."
<< endl;
}
else
{
cout << "The element ( 1,10 ) does "
<< "not precede the element ( 2,5 )."
<< endl;
}
if( vc1( *Iter2, *Iter1 ) == true )
{
cout << "The element ( 2,5 ) precedes the element ( 1,10 )."
<< endl;
}
else
{
cout << "The element ( 2,5 ) does "
<< "not precede the element ( 1,10 )."
<< endl;
}
}
Output
The element ( 1,10 ) precedes the element ( 2,5 ).
The element ( 2,5 ) does not precede the element ( 1,10 ).
요구 사항
헤더: <hash_map>
네임 스페이스: stdext