<hash_map>
– operátory
operator!=
operator!= (multimap)
operator==
operator== (multimap)
operator!=
Poznámka:
Toto rozhraní API je zastaralé. Alternativou je třída unordered_map.
Testuje, zda hash_map objekt na levé straně operátoru není roven hash_map objektu na pravé straně.
bool operator!=(const hash_map <Key, Type, Traits, Allocator>& left, const hash_map <Key, Type, Traits, Allocator>& right);
Parametry
Vlevo
Objekt typu hash_map
.
Vpravo
Objekt typu hash_map
.
Návratová hodnota
true
pokud hash_maps nejsou rovny; false
pokud hash_maps jsou stejné.
Poznámky
Porovnání hash_map objektů je založeno na párovém porovnání jejich prvků. Dvě hash_maps jsou stejné, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty. Jinak jsou nerovné.
<Členové souborů hlaviček hash_map> a <hash_set> v oboru názvů stdext.
Příklad
// 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;
}
The hash_maps hm1 and hm2 are not equal.
The hash_maps hm1 and hm3 are equal.
operator==
Poznámka:
Toto rozhraní API je zastaralé. Alternativou je třída unordered_map.
Testuje, zda je objekt hash_map na levé straně operátoru roven hash_map objektu na pravé straně.
bool operator==(const hash_map <Key, Type, Traits, Allocator>& left, const hash_map <Key, Type, Traits, Allocator>& right);
Parametry
Vlevo
Objekt typu hash_map
.
Vpravo
Objekt typu hash_map
.
Návratová hodnota
true
je-li hash_map na levé straně operátoru roven hash_map na pravé straně operátoru; jinak false
.
Poznámky
Porovnání hash_map objektů je založeno na párovém porovnání jejich prvků. Dvě hash_maps jsou stejné, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty. Jinak jsou nerovné.
Příklad
// hash_map_op_eq.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 equal." << endl;
else
cout << "The hash_maps hm1 and hm2 are not equal." << endl;
if ( hm1 == hm3 )
cout << "The hash_maps hm1 and hm3 are equal." << endl;
else
cout << "The hash_maps hm1 and hm3 are not equal." << endl;
}
The hash_maps hm1 and hm2 are not equal.
The hash_maps hm1 and hm3 are equal.
operator!= (hash_multimap)
Poznámka:
Toto rozhraní API je zastaralé. Alternativou je třída unordered_multimap.
Testuje, zda hash_multimap objekt na levé straně operátoru není roven hash_multimap objektu na pravé straně.
bool operator!=(const hash_multimap <Key, Type, Traits, Allocator>& left, const hash_multimap <Key, Type, Traits, Allocator>& right);
Parametry
Vlevo
Objekt typu hash_multimap
.
Vpravo
Objekt typu hash_multimap
.
Návratová hodnota
true
pokud hash_multimaps nejsou rovny; false
pokud hash_multimaps jsou stejné.
Poznámky
Porovnání hash_multimap objektů je založeno na párovém porovnání jejich prvků. Dvě hash_multimaps jsou stejné, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty. Jinak jsou nerovné.
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;
}
The hash_multimaps hm1 and hm2 are not equal.
The hash_multimaps hm1 and hm3 are equal.
operator== (hash_multimap)
Poznámka:
Toto rozhraní API je zastaralé. Alternativou je třída unordered_multimap.
Testuje, zda je objekt hash_multimap na levé straně operátoru roven hash_multimap objektu na pravé straně.
bool operator==(const hash_multimap <Key, Type, Traits, Allocator>& left, const hash_multimap <Key, Type, Traits, Allocator>& right);
Parametry
Vlevo
Objekt typu hash_multimap
.
Vpravo
Objekt typu hash_multimap
.
Návratová hodnota
true
je-li hash_multimap na levé straně operátoru roven hash_multimap na pravé straně operátoru; jinak false
.
Poznámky
Porovnání hash_multimap objektů je založeno na párovém porovnání jejich prvků. Dvě hash_multimaps jsou stejné, pokud mají stejný počet prvků a jejich odpovídající prvky mají stejné hodnoty. Jinak jsou nerovné.
Příklad
// hash_multimap_op_eq.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 equal." << endl;
else
cout << "The hash_multimaps hm1 and hm2 are not equal." << endl;
if ( hm1 == hm3 )
cout << "The hash_multimaps hm1 and hm3 are equal." << endl;
else
cout << "The hash_multimaps hm1 and hm3 are not equal." << endl;
}
The hash_multimaps hm1 and hm2 are not equal.
The hash_multimaps hm1 and hm3 are equal.