Operatör < = (hash_map)
İşlecinin sol tarafındaki hash_map nesnesinin sınamaları küçük veya eşit hash_map nesnesine sağ tarafındaki olur.
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_map işlecinin sol tarafındaki hash_map; işlecinin sağ tarafındaki küçük veya eşit olması durumunda Aksi halde yanlış.
Açıklama
Hash_map nesneler arasında karşılaştırma öðelerinin yapılandırdı Karşılaştırmasında esas alır. İki nesne arasındaki ilişkiyi küçüktür veya eşittir, eşit olmayan öğelerin ilk çifti Karşılaştırmasında dayanır.
Visual c++ .net 2003'te, üyeleri <hash_map> ve <hash_set> üstbilgi 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_le.cpp
// compile with: /EHsc
#define _DEFINE_DEPRECATED_HASH_CLASSES 0
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map <int, int> hm1, hm2, hm3, hm4;
int i;
typedef pair <int, int> Int_Pair;
for ( i = 1 ; i < 3 ; i++ )
{
hm1.insert ( Int_Pair ( i, i ) );
hm2.insert ( Int_Pair ( i, i * i ) );
hm3.insert ( Int_Pair ( i, i - 1 ) );
hm4.insert ( Int_Pair ( i, i ) );
}
if ( hm1 <= hm2 )
cout << "The hash_map hm1 is less than or equal to the hash_map hm2." << endl;
else
cout << "The hash_map hm1 is greater than the hash_map hm2." << endl;
if ( hm1 <= hm3 )
cout << "The hash_map hm1 is less than or equal to the hash_map hm3." << endl;
else
cout << "The hash_map hm1 is greater than the hash_map hm3." << endl;
if ( hm1 <= hm4 )
cout << "The hash_map hm1 is less than or equal to the hash_map hm4." << endl;
else
cout << "The hash_map hm1 is greater than the hash_map hm4." << endl;
}
Gereksinimler
Başlık: <hash_map>
Namespace: stdext