다음을 통해 공유


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
    개체 형식의 쌍.

  • _Right
    pair 형식의 개체입니다.

반환 값

true 이면 쌍; 같지 않으면 false 이면 쌍이 같은 경우.

설명

각각의 해당 요소와 같으면 다른 쌍에 한 쌍이입니다.두 쌍의 첫 번째 또는 두 번째 요소가 하나의 다른 쌍의 해당 요소에 다르면 같지 않습니다.

예제

// utility_op_ne.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 not equal." << endl;
   else
      cout << "The pairs p1 and p2 are equal." << endl;

   if ( p1 != p3 )
      cout << "The pairs p1 and p3 are not equal." << endl;
   else
      cout << "The pairs p1 and p3 are equal." << endl;
}
  
  
  
  
  

요구 사항

헤더: <utility>

네임 스페이스: std