multimap::key_comp
비교 순서 키에 있는 multimap에 사용 되는 개체의 복사본을 검색 합니다.
key_compare key_comp( ) const;
반환 값
Multimap는 요소 순서를 사용 하 여 함수 개체를 반환 합니다.
설명
저장 된 개체 멤버 함수를 정의합니다.
bool operator(**const Key&**x, **const Key&**y);
어떤 반환 true x 앞에 엄격 하 게 y 정렬 순서에서.
예제
// multimap_key_comp.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
multimap <int, int, less<int> > m1;
multimap <int, int, less<int> >::key_compare kc1 = m1.key_comp( ) ;
bool result1 = kc1( 2, 3 ) ;
if( result1 == true )
{
cout << "kc1( 2,3 ) returns value of true, "
<< "where kc1 is the function object of m1."
<< endl;
}
else
{
cout << "kc1( 2,3 ) returns value of false "
<< "where kc1 is the function object of m1."
<< endl;
}
multimap <int, int, greater<int> > m2;
multimap <int, int, greater<int> >::key_compare kc2 = m2.key_comp( );
bool result2 = kc2( 2, 3 ) ;
if( result2 == true )
{
cout << "kc2( 2,3 ) returns value of true, "
<< "where kc2 is the function object of m2."
<< endl;
}
else
{
cout << "kc2( 2,3 ) returns value of false, "
<< "where kc2 is the function object of m2."
<< endl;
}
}
요구 사항
헤더: <map>
네임 스페이스: std