operator== (hash_multimap)

备注

此 API 已过时。另一种方法是 unordered_multimap Class

如果在运算符的左边 hash_multimap 对象与右侧,的 hash_multimap 对象相等测试。

bool operator==(
   const hash_multimap <Key, Type, Traits, Allocator>& _Left,
   const hash_multimap <Key, Type, Traits, Allocator>& _Right
);

参数

  • _Left
    hash_multimap 类型的对象。

  • _Right
    hash_multimap 类型的对象。

返回值

,如果在运算符的左边 hash_multimap 与 hash_multimap 相等在运算符的右侧;否则

备注

在 hash_multimap 对象之间的比较根据其元素的比较 pairwise。 两 hash_multimaps 相等;如果它们具有相同元素数目,并且其各自的元素具有相同的值。 否则为不相等。

在 Visual C++ .NET 2003 中,<hash_map><hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。 有关更多信息,请参见 stdext 命名空间

示例

// hash_multimap_op_eq.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multimap<int, int> hm1, hm2, hm3;
   int i;
   typedef pair<int, int> Int_Pair;

   for (i = 0; i < 3; i++)
   {
      hm1.insert(Int_Pair(i, i));
      hm2.insert(Int_Pair(i, i*i));
      hm3.insert(Int_Pair(i, i));
   }

   if ( hm1 == hm2 )
      cout << "The hash_multimaps hm1 and hm2 are equal." << endl;
   else
      cout << "The hash_multimaps hm1 and hm2 are not equal." << endl;

   if ( hm1 == hm3 )
      cout << "The hash_multimaps hm1 and hm3 are equal." << endl;
   else
      cout << "The hash_multimaps hm1 and hm3 are not equal." << endl;
}
  
  

要求

标头: <hash_map>

命名空间: stdext

请参见

参考

标准模板库