다음을 통해 공유


operator!= (hash_map)

[!참고]

이 API는 사용되지 않습니다.대신 unordered_map Class.

Hash_map 개체 연산자의 왼쪽에서 오른쪽에 hash_map 개체 인지 테스트 합니다.

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

매개 변수

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

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

반환 값

true 이면 의 hash_maps; 같지 않은 경우 false 이면 hash_maps 같은 경우.

설명

Hash_map 객체 간의 비교는 해당 요소의 인덱스도 비교를 기반으로 합니다.두 개의 hash_maps가 같은 수의 요소가 있고 해당 요소의 동일한 값을 갖습니다 경우 같습니다.그렇지 않으면 두 개체는 서로 다른 개체입니다.

Visual C++.NET 2003 멤버는 <hash_map><hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.

예제

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

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_map <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_maps hm1 and hm2 are not equal." << endl;
   else
      cout << "The hash_maps hm1 and hm2 are equal." << endl;

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

요구 사항

헤더: <hash_map>

네임 스페이스: stdext

참고 항목

참조

표준 템플릿 라이브러리