Operatör < = (hash_multiset)
İşlecinin sol tarafındaki hash_multiset nesnesinin sınamaları küçük veya eşit hash_multiset nesnesine sağ tarafındaki olur.
bool operator!<=(
const hash_multiset <Key, Traits, Allocator>& _Left,
const hash_multiset <Key, Traits, Allocator>& _Right
);
Parametreler
_Left
Bir nesne türü hash_multiset._Right
Bir nesne türü hash_multiset.
Dönüş Değeri
gerçek hash_multiset işlecinin sol tarafındaki hash_multiset; işlecinin sağ tarafındaki küçük veya eşit olması durumunda Aksi halde yanlış.
Notlar
Hash_multiset 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_multiset_op_ne.cpp
// compile with: /EHsc
#define _DEFINE_DEPRECATED_HASH_CLASSES 0
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hs1, hs2, hs3, hs4;
int i;
for ( i = 0 ; i < 3 ; i++ )
{
hs1.insert ( i );
hs2.insert ( i * i );
hs3.insert ( i - 1 );
hs4.insert ( i );
}
if ( hs1 <= hs2 )
cout << "The hash_multiset hs1 is less than "
<< "or equal to the hash_multiset hs2." << endl;
else
cout << "The hash_multiset hs1 is greater than "
<< "the hash_multiset hs2." << endl;
if ( hs1 <= hs3 )
cout << "The hash_multiset hs1 is less than "
<< "or equal to the hash_multiset hs3." << endl;
else
cout << "The hash_multiset hs1 is greater than "
<< "the hash_multiset hs3." << endl;
if ( hs1 <= hs4 )
cout << "The hash_multiset hs1 is less than "
<< "or equal to the hash_multiset hs4." << endl;
else
cout << "The hash_multiset hs1 is greater than "
<< "the hash_multiset hs4." << endl;
}
Gereksinimler
Başlık: <hash_set>
Namespace: stdext