operator!= (hash_multimap)
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_multimap – třída.
Zkoušky, pokud objekt hash_multimap na levé straně operátoru není rovno hash_multimap objektů na pravé straně.
bool operator!=(
const hash_multimap <Key, Type, Traits, Allocator>& _Left,
const hash_multimap <Key, Type, Traits, Allocator>& _Right
);
Parametry
_Left
Objekt typu hash_multimap._Right
Objekt typu hash_multimap.
Vrácená hodnota
true Pokud hash_multimaps není stejný; false Pokud hash_multimaps jsou shodné.
Poznámky
Srovnání mezi hash_multimap objekty je založena na porovnání ukládání svých prvků.Dva hash_multimaps jsou rovny, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty.Jinak nerovné.
V aplikaci Visual C++ .NET 2003, členové hlavičkových souborů tříd <hash_map> a <hash_set> již nejsou v oboru názvů std, ale byly přesunuty do oboru názvů stdext.Další informace naleznete v tématu Obor názvů stdext.
Příklad
// 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;
}
Požadavky
Hlavička: <hash_map>
Obor názvů: stdext