Sdílet prostřednictvím


operator<= (<utility>)

Zkoušky, pokud pár na levé straně operátor je menší než nebo rovno dvojice objektů na pravé straně.

template<Class Type>
   bool operator<=(
      const Type& _Left, 
      const Type& _Right
   );
template<class Type1, class Type2>
   bool operator<=(
      const pair<Type1, Type2>& _Left,
      const pair<Type1, Type2>& _Right
   );

Parametry

  • _Left
    Objekt typu pair na levé straně operátoru.

  • _Right
    Objekt typu pair na pravé straně operátoru.

Vrácená hodnota

True Pokud pair na levé straně operátor je menší než nebo rovno pair na pravé straně provozovatele; jinak false.

Poznámky

V porovnání se dvojice hodnot prvků první dva páry mají nejvyšší prioritu.Pokud se liší, jako výsledek porovnání dvojice přijata výsledek jejich porovnání.Pokud nejsou hodnoty první prvků různých, porovnání hodnot prvků druhé a výsledek jejich srovnání je považován za výsledek porovnávání dvojice.

Příklad

// utility_op_le.cpp
// compile with: /EHsc
#include <utility>
#include <iomanip>
#include <iostream>

int main( )
{
   using namespace std;
   pair <int, double> p1, p2, p3, p4;

   p1 = make_pair ( 10, 2.22e-1 );
   p2 = make_pair ( 100, 1.11e-1 );
   p3 = make_pair ( 10, 1.11e-1 );
   p4 = make_pair ( 10, 2.22e-1 );

   cout.precision ( 3 );
   cout << "The pair p1 is: ( " << p1.first << ", " 
        << p1.second << " )." << endl;
   cout << "The pair p2 is: ( " << p2.first << ", " 
        << p2.second << " )." << endl;
   cout << "The pair p3 is: ( " << p3.first << ", " 
        << p3.second << " )." << endl;
   cout << "The pair p4 is: ( " << p4.first << ", " 
        << p4.second << " )." << endl << endl;

   if ( p1 <= p2 )
      cout << "The pair p1 is less than or equal to the pair p2." << endl;
   else
      cout << "The pair p1 is greater than the pair p2." << endl;

   if ( p1 <= p3 )
      cout << "The pair p1 is less than or equal to the pair p3." << endl;
   else
      cout << "The pair p1 is greater than the pair p3." << endl;

   if ( p1 <= p4 )
      cout << "The pair p1 is less than or equal to the pair p4." << endl;
   else
      cout << "The pair p1 is greater than the pair p4." << endl;
}
  
  
  
  
  
  
  

Požadavky

Záhlaví: <utility>

Obor názvů: std