operator>= (<utility>)
쌍은 연산자의 왼쪽에서 오른쪽에 쌍 개체 보다 크거나 인지 테스트 합니다.
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
);
매개 변수
_Left
개체 형식의 pair 연산자의 왼쪽에 있습니다._Right
개체 형식의 pair 연산자의 오른쪽에 있습니다.
반환 값
true 경우는 pair 보다 크거나 같음 연산자의 왼쪽에 되는 pair ; 연산자의 오른쪽에 그렇지 않으면 거짓.
설명
쌍 비교의 우선 순위가 가장 높은 두 쌍의 첫 번째 요소 값의 경우다음의 비교 결과를 다르면 쌍의 비교 결과를 가져옵니다.첫 번째 요소 값을 다른 경우 두 번째 요소 값을 비교 하 고 비교 쌍의 결과로 비교 결과를 가져옵니다.
예제
// utility_op_ge.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 << "Pair p1 is greater than or equal to pair p2." << endl;
else
cout << "The pair p1 is less than the pair p2." << endl;
if ( p1 >= p3 )
cout << "Pair p1 is greater than or equal to pair p3." << endl;
else
cout << "The pair p1 is less than the pair p3." << endl;
if ( p1 >= p4 )
cout << "Pair p1 is greater than or equal to pair p4." << endl;
else
cout << "The pair p1 is less than the pair p4." << endl;
}
요구 사항
헤더: <utility>
네임 스페이스: std