C++ 参考手册

位置:首页 > C++ 参考手册 >工具库 >函数对象 > std::not_equal_to

定义于头文件 <functional>
template< class T >
struct not_equal_to;
(C++14 前)
template< class T = void >
struct not_equal_to;
(C++14 起)

进行比较的函数对象。除非特化,调用类型 T 上的 operator!=

特化

标准库提供n std::not_equal_to 在不指定 T 时的特化,令参数类型和返回类型留待推导。

实现 x != y 并推导参数和返回类型的函数对象
(类模板特化)
(C++14 起)

成员类型

 
类型 定义
result_type(C++17 中弃用) bool
first_argument_type(C++17 中弃用) T
second_argument_type(C++17 中弃用) T
(C++20 前)

成员函数

operator()
检查参数是否不相等
(公开成员函数)

std::not_equal_to::operator()

bool operator()( const T& lhs, const T& rhs ) const;
(C++14 前)
constexpr bool operator()( const T& lhs, const T& rhs ) const;
(C++14 起)

检查 lhs 是否不等于 rhs

参数

lhs, rhs - 要比较的值

返回值

lhs != rhs 则为 true ,否则为 false

异常

(无)

可能的实现

constexpr bool operator()(const T &lhs, const T &rhs) const 
{
    return lhs != rhs;
}