multiset::key_comp
Multiset에 순서 대로 키를 사용한 비교 개체의 복사본을 검색 합니다.
key_compare key_comp( ) const;
반환 값
템플릿 매개 변수인 multiset의 요소 순서를 사용 하 여 함수 개체를 반환 Compare.
에 대 한 자세한 내용은 Compare, 설명 절을 참조 하십시오의 multiset Class 항목.
설명
저장 된 개체의 멤버 함수를 정의합니다.
bool operator(**const Key&**x, **const Key&**y);
어떤 반환 true x 앞에 엄격 하 게 y 정렬 순서에서.
이때 모두 key_compare 및 value_compare 동의어에 대 한 템플릿 매개 변수는 Compare.두 클래스 집합 및 multiset 위치 동일, multimap, 구분 되는 클래스 구조와 호환성에 대 한 제공 됩니다.
예제
// multiset_key_comp.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int, less<int> > ms1;
multiset <int, less<int> >::key_compare kc1 = ms1.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 s1."
<< endl;
}
else
{
cout << "kc1( 2,3 ) returns value of false "
<< "where kc1 is the function object of ms1."
<< endl;
}
multiset <int, greater<int> > ms2;
multiset <int, greater<int> >::key_compare kc2 = ms2.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 ms2."
<< endl;
}
else
{
cout << "kc2( 2,3 ) returns value of false, "
<< "where kc2 is the function object of ms2."
<< endl;
}
}
요구 사항
헤더: <set>
네임 스페이스: std