Aracılığıyla paylaş


Operatör < = (hash_set)

İşlecinin sol tarafındaki hash_set nesnesinin sınamaları küçük veya eşit hash_set nesnesine sağ tarafındaki olur.

bool operator!<=(
   const hash_set <Key, Traits, Allocator>& _Left,
   const hash_set <Key, Traits, Allocator>& _Right
);

Parametreler

  • _Left
    Bir nesne türü hash_set.

  • _Right
    Bir nesne türü hash_set.

Dönüş Değeri

gerçek hash_set işlecinin sol tarafındaki hash_set; işlecinin sağ tarafındaki küçük veya eşit olması durumunda Aksi halde yanlış.

Notlar

Hash_set 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_set_op_le.cpp
// compile with: /EHsc
#define _DEFINE_DEPRECATED_HASH_CLASSES 0
#include <hash_set>
#include <iostream>

int main( ) 
{
   using namespace std;
   using namespace stdext;
   hash_set <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 << "Hash_set hs1 is less than or equal to hash_set hs2." << endl;
   else
      cout << "Hash_set hs1 is greater than hash_set hs2." << endl;

   if ( hs1 <= hs3 )
      cout << "Hash_set hs1 is less than or equal to hash_set hs3." << endl;
   else
      cout << "Hash_set hs1 is greater than hash_set hs3." << endl;

   if ( hs1 <= hs4 )
      cout << "Hash_set hs1 is less than or equal to hash_set hs4." << endl;
   else
      cout << "Hash_set hs1 is greater than hash_set hs4." << endl;
}
  
  
  

Gereksinimler

Başlık: <hash_set>

Namespace: stdext

Ayrıca bkz.

Başvuru

Standart Şablon Kütüphanesi