operator!= (hash_map)
Not
Bu API artık kullanılmıyor.Alternatif unordered_map Class.
Testler işlecinin sol tarafındaki hash_map nesnesini hash_map nesnesini sağ tarafta eşit değildir.
bool operator!=(
const hash_map <Key, Type, Traits, Allocator>& _Left,
const hash_map <Key, Type, Traits, Allocator>& _Right
);
Parametreler
_Left
Bir nesne türü hash_map._Right
Bir nesne türü hash_map.
Dönüş Değeri
gerçek hash_maps; eşit değilse yanlış hash_maps eşit olması durumunda.
Notlar
Hash_map nesneleri arasında karşılaştırma öðelerinin ikili karşılaştırma üzerine dayanır. Bunlar aynı sayıda öğe varsa ve bunların ilgili öğeleri aynı değerlere sahip iki hash_maps eşit. Aksi halde, bunlar eşit olmayan.
Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.
Örnek
// 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;
}
Gereksinimler
Başlık: <hash_map>
Ad alanı: stdext