命名空间
变体
操作

operator==, !=(std::function)

来自 cppreference.com
< cpp‎ | utility‎ | functional‎ | function
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
函数调用
(C++17)(C++23)
身份函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧的绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
 
在头文件 <functional> 中定义
template< class R, class... ArgTypes >

bool operator==( const std::function<R(ArgTypes...)>& f,

                 std::nullptr_t ) noexcept;
(1) (自 C++11 起)
template< class R, class... ArgTypes >

bool operator==( std::nullptr_t,

                 const std::function<R(ArgTypes...)>& f ) noexcept;
(2) (自 C++11 起)
(直到 C++20)
template< class R, class... ArgTypes >

bool operator!=( const std::function<R(ArgTypes...)>& f,

                 std::nullptr_t ) noexcept;
(3) (自 C++11 起)
(直到 C++20)
template< class R, class... ArgTypes >

bool operator!=( std::nullptr_t,

                 const std::function<R(ArgTypes...)>& f ) noexcept;
(4) (自 C++11 起)
(直到 C++20)

std::function 与空指针进行比较。空函数(即没有可调用目标的函数)比较相等,非空函数比较不相等。

!= 运算符是 operator== 合成 的。

(自 C++20 起)

内容

[编辑] 参数

f - 要比较的 std::function

[编辑] 返回值

1,2) !f
3,4) (bool) f

[编辑] 示例

#include <functional>
#include <iostream>
 
using SomeVoidFunc = std::function<void(int)>;
 
class C
{
public:
    C(SomeVoidFunc void_func = nullptr) : void_func_(void_func)
    {
        if (void_func_ == nullptr) // specialized compare with nullptr
            void_func_ = std::bind(&C::default_func, this, std::placeholders::_1);
        void_func_(7);
    }
 
    void default_func(int i) { std::cout << i << '\n'; };
 
private:
    SomeVoidFunc void_func_;
};
 
void user_func(int i)
{
    std::cout << (i + 1) << '\n';
}
 
int main()
{
    C c1;
    C c2(user_func);
}

输出

7
8

[编辑] 另请参阅

std::move_only_functionnullptr 进行比较
(function) [编辑]