not_equal_to Struct
지정 된 형식의 값을 다른 값으로 같지 않은지를 테스트 이진 술 부.
template<class Type>
struct not_equal_to : public binary_function<Type, Type, bool>
{
bool operator()(
const Type& _Left,
const Type& _Right
) const;
};
매개 변수
_Left
왼쪽된 피연산자의 형식 유형 에서 같은지 테스트 합니다._Right
오른쪽 피연산자 형식 형식 에서 같은지 테스트 합니다.
반환 값
true if _Left does not equal _Right ; false if _Left equals _Right.
설명
개체 형식의 유형 같음 서로 동등 해야 합니다.이렇게 하려면의 operator!= 에 정의 된 수학적 속성의 모든 기본 제공 숫자는 등가 관계 개체 집합에 맞고 포인터 형식이이 요구 사항을 충족 합니다.
예제
// functional_not_equal_to.cpp
// compile with: /EHsc
#include <vector>
#include <functional>
#include <algorithm>
#include <iostream>
using namespace std;
int main( )
{
vector <double> v1, v2, v3 (6);
vector <double>::iterator Iter1, Iter2, Iter3;
int i;
for ( i = 0 ; i <= 5 ; i+=2 )
{
v1.push_back( 2.0 *i );
v1.push_back( 2.0 * i + 1.0 );
}
int j;
for ( j = 0 ; j <= 5 ; j+=2 )
{
v2.push_back( - 2.0 * j );
v2.push_back( 2.0 * j + 1.0 );
}
cout << "The vector v1 = ( " ;
for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
cout << *Iter1 << " ";
cout << ")" << endl;
cout << "The vector v2 = ( " ;
for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ )
cout << *Iter2 << " ";
cout << ")" << endl;
// Testing for the element-wise equality between v1 & v2
transform ( v1.begin( ), v1.end( ), v2.begin( ), v3.begin ( ),
not_equal_to<double>( ) );
cout << "The result of the element-wise not_equal_to comparsion\n"
<< "between v1 & v2 is: ( " ;
for ( Iter3 = v3.begin( ) ; Iter3 != v3.end( ) ; Iter3++ )
cout << *Iter3 << " ";
cout << ")" << endl;
}
요구 사항
헤더: <functional>
네임 스페이스: std