Aracılığıyla paylaş


Operatör < = (hash_multimap)

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

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

Parametreler

  • _Left
    Bir nesne türü hash_multimap.

  • _Right
    Bir nesne türü hash_multimap.

Dönüş Değeri

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

Açıklama

Hash_multimap 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_multimap_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_multimap <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_multimap hm1 is less than or equal to the hash_multimap hm2." << endl;
   else
      cout << "The hash_multimap hm1 is greater than the hash_multimap hm2." << endl;

   if ( hm1 <= hm3 )
      cout << "The hash_multimap hm1 is less than or equal to the hash_multimap hm3." << endl;
   else
      cout << "The hash_multimap hm1 is greater than the hash_multimap hm3." << endl;

   if ( hm1 <= hm4 )
      cout << "The hash_multimap hm1 is less than or equal to the hash_multimap hm4." << endl;
   else
      cout << "The hash_multimap hm1 is greater than the hash_multimap hm4." << endl;
}
  
  
  

Gereksinimler

Başlık: <hash_map>

Namespace: stdext

Ayrıca bkz.

Başvuru

Standart Şablon Kütüphanesi