다음을 통해 공유


operator< (<utility>)

연산자의 왼쪽에 있는 쌍 개체 테스트 보다 오른쪽에 쌍 개체입니다.

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

매개 변수

  • _Left
    개체 형식의 pair 연산자의 왼쪽에 있습니다.

  • _Right
    개체 형식의 pair 연산자의 오른쪽에 있습니다.

반환 값

true 경우는 pair 연산자의 왼쪽에 엄격 하 게 되어 보다는 pair ; 연산자의 오른쪽에 그렇지 않으면 거짓.

설명

_Leftpair 개체 라고 엄격 하 게 될 보다는 _Rightpair 경우 개체 _Left 와 같지 않은 작습니다_Right.

쌍 비교의 우선 순위가 가장 높은 두 쌍의 첫 번째 요소 값의 경우다음의 비교 결과를 다르면 쌍의 비교 결과를 가져옵니다.첫 번째 요소 값을 다른 경우 두 번째 요소 값을 비교 하 고 비교 쌍의 결과로 비교 결과를 가져옵니다.

예제

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

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

   p1 = make_pair ( 10, 2.22e-1 );
   p2 = make_pair ( 100, 1.11e-1 );
   p3 = make_pair ( 10, 1.11e-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 << endl;

   if ( p1 < p2 )
      cout << "The pair p1 is less than the pair p2." << endl;
   else
      cout << "The pair p1 is not less than the pair p2." << endl;

   if ( p1 < p3 )
      cout << "The pair p1 is less than the pair p3." << endl;
   else
      cout << "The pair p1 is not less than the pair p3." << endl;
}
  
  
  
  
  

요구 사항

헤더: <utility>

네임 스페이스: std