다음을 통해 공유


operator!= (unordered_multimap)

Tests whether the unordered_multimap object on the left side of the operator is not equal to the unordered_multimap object on the right side.

bool operator!=( 
   const unordered_multimap <Key, Type, Hash, Pred, Allocator>& _Left, 
   const unordered_multimap <Key, Type, Hash, Pred, Allocator>& _Right 
);

매개 변수

  • _Left
    unordered_multimap 형식의 개체입니다.

  • _Right
    unordered_multimap 형식의 개체입니다.

반환 값

true if the unordered_multimaps are not equal; false if they are equal.

설명

The comparison between unordered_multimap objects is not affected by the arbitrary order in which they store their elements. Two unordered_multimaps are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are not equal.

예제

// unordered_multimap_op_ne.cpp
// compile by using: cl.exe /EHsc /nologo /W4 /MTd 
#include <unordered_map>
#include <iostream>
#include <ios>

int main( )
{
   using namespace std;
   unordered_multimap<int, int> um1, um2, um3;
   
   for ( int i = 0 ; i < 3 ; ++i ) {
      um1.insert( make_pair( i, i ) );
      um1.insert( make_pair( i, i ) );

      um2.insert( make_pair( i, i ) );
      um2.insert( make_pair( i, i ) );
      um2.insert( make_pair( i, i ) );
      
      um3.insert( make_pair( i, i ) );
      um3.insert( make_pair( i, i ) );
   }

   cout << boolalpha;
   cout << "um1 != um2: " << (um1 != um2) << endl; 
   cout << "um1 != um3: " << (um1 != um3) << endl; 
   cout << "um2 != um3: " << (um2 != um3) << endl; 
}

출력:

um1 != um2: true

um1 != um3: false

um2 != um3: true

요구 사항

헤더:<unordered_map>

네임스페이스: std

참고 항목

참조

표준 템플릿 라이브러리