共用方式為


operator!= (hash_multimap)

注意事項注意事項

這個 API 已經過時。替代案例是 unordered_multimap 類別

測試,如果在運算子左方的 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 的物件。

傳回值

true ,如果 hash_multimaps 相等; false ,如果 hash_multimaps 相等。

備註

在 hash_multimap 物件之間的比較可能會依據其項目比較配對。 兩 hash_multimaps 相等,如果它們有相同的元素數,且其元素具有相同的值。 否則就是不相等。

在 Visual C++ .NET 2003 中, <hash_map><hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間

範例

// hash_multimap_op_ne.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 not equal." << endl;
   else
      cout << "The hash_multimaps hm1 and hm2 are equal." << endl;

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

需求

標頭檔: <hash_map>

**命名空間:**stdext

請參閱

參考

標準樣板程式庫