C++ 函数库 - not_equal_to



描述

这是一个用于非等式比较的功能对象类,以及一个二元函数对象类,其调用返回其两个参数是否比较不相等(由运算符 operator!= 返回)。

声明

以下是 std::not_equal_to 的声明。

template <class T> struct not_equal_to;

C++11

template <class T> struct not_equal_to;

参数

T − 它是函数调用参数和返回值的类型。

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的示例说明了 std::not_equal_to 的用法。

#include <iostream>
#include <functional>
#include <algorithm>

int main () {
   int numbers[]={10,20,30,40,50};
   int* pt = std::adjacent_find (numbers, numbers+5, std::not_equal_to<int>()) +1;
   std::cout << " Different element is " << *pt << '\n';
   return 0;
}

让我们编译并运行以上程序,这将产生以下结果:

 Different element is 20
functional.htm
广告