operator!= (hash_multimap)
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multimap Class.
Sprawdza, czy obiekt hash_multimap po lewej stronie operatora nie jest równa obiektu hash_multimap, po prawej stronie.
bool operator!=(
const hash_multimap <Key, Type, Traits, Allocator>& _Left,
const hash_multimap <Key, Type, Traits, Allocator>& _Right
);
Parametry
_Left
Obiekt typu hash_multimap._Right
Obiekt typu hash_multimap.
Wartość zwracana
TRUE Jeśli hash_multimaps nie są równe; fałszywe Jeśli hash_multimaps są równe.
Uwagi
Porównanie między obiektami hash_multimap opiera się na par porównanie ich elementów.Dwa hash_multimaps są równe, jeśli mają taką samą liczbę elementów i ich odpowiednich elementów mają te same wartości.W przeciwnym razie są nierówne.
W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.
Przykład
// 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;
}
Wymagania
Nagłówek: <hash_map>
Przestrzeń nazw: stdext