다음을 통해 공유


operator!= (hash_multiset)

[!참고]

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

Hash_multiset 개체는 연산자의 왼쪽에서 오른쪽에 있는 hash_multiset 개체 인지 테스트 합니다.

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

매개 변수

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

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

반환 값

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

설명

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

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

예제

// hashset_op_ne.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( ) 
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hs1, hs2, hs3;
   int i;

   for ( i = 0 ; i < 3 ; i++ )
   {
      hs1.insert ( i );
      hs2.insert ( i * i );
      hs3.insert ( i );
   }

   if ( hs1 != hs2 )
      cout << "The hash_multisets hs1 and hs2 are not equal." << endl;
   else
      cout << "The hash_multisets hs1 and hs2 are equal." << endl;

   if ( hs1 != hs3 )
      cout << "The hash_multisets hs1 and hs3 are not equal." << endl;
   else
      cout << "The hash_multisets hs1 and hs3 are equal." << endl;
}
  
  

요구 사항

헤더: <hash_set>

네임 스페이스: stdext

참고 항목

참조

표준 템플릿 라이브러리