operator== (<utility>)
쌍은 연산자의 왼쪽에서 오른쪽에 있는 쌍 개체 인지 테스트 합니다.
template<class Type1, class Type2>
bool operator==(
const pair<Type1, Type2>& _Left,
const pair<Type1, Type2>& _Right
);
매개 변수
_Left
개체 형식의 쌍._Right
pair 형식의 개체입니다.
반환 값
true 이면 쌍 같으면. false 이면 경우는 pairs 같지 않습니다.
설명
각각의 해당 요소와 같으면 다른 쌍에 한 쌍이입니다.함수 반환 _Left.first == _Right. 첫 번째 & & _Left.second == _Right.second.두 쌍의 첫 번째 또는 두 번째 요소가 하나의 다른 쌍의 해당 요소에 다르면 같지 않습니다.
예제
// utility_op_eq.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, 1.11e-1 );
p2 = make_pair ( 1000, 1.11e-3 );
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 pairs p1 and p2 are equal." << endl;
else
cout << "The pairs p1 and p2 are not equal." << endl;
if ( p1 == p3 )
cout << "The pairs p1 and p3 are equal." << endl;
else
cout << "The pairs p1 and p3 are not equal." << endl;
}
Output
The pair p1 is: ( 10, 0.111 ).
The pair p2 is: ( 1000, 0.00111 ).
The pair p3 is: ( 10, 0.111 ).
The pairs p1 and p2 are not equal.
The pairs p1 and p3 are equal.
요구 사항
헤더: <utility>
네임 스페이스: std