map::value_comp

成员函数返回通过对它们进行比较的键值确定元素在映射函数的对象。

value_compare value_comp( ) const;

返回值

返回映射使用对其元素进行比较函数对象。

备注

对于映射 m,如果两个元素 e1(k1, d1) 和 e2(k2, d2) 类型的对象,value_type, where k1 and k2 类型自己的键 key_type and d1 and d2 类型的数据, mapped_type, then *m.*value_comp(e1, e2) 等效于 m.key_comp(k1, k2)。 一个存储的对象成员函数定义

bool operatorvalue_type&  value_type& (_Left,_Right);

后者返回 true,如果关键 _Left 值前面并与键值不相等在排序顺序的 _Right。

示例

// map_value_comp.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   
   map <int, int, less<int> > m1;
   map <int, int, less<int> >::value_compare vc1 = m1.value_comp( );
   pair< map<int,int>::iterator, bool > pr1, pr2;
   
   pr1= m1.insert ( map <int, int> :: value_type ( 1, 10 ) );
   pr2= m1.insert ( map <int, int> :: value_type ( 2, 5 ) );

   if( vc1( *pr1.first, *pr2.first ) == 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( *pr2.first, *pr1.first ) == 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;
   }
}
  

要求

标头: <map>

命名空间: std

请参见

参考

map 类

标准模板库