名前空間
変種
操作

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

提供: cppreference.com
< cpp‎ | utility‎ | functional‎ | function
 
 
ユーティリティライブラリ
汎用ユーティリティ
日付と時間
関数オブジェクト
書式化ライブラリ (C++20)
(C++11)
関係演算子 (C++20で非推奨)
整数比較関数
(C++20)
スワップと型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
一般的な語彙の型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等文字列変換
(C++17)
(C++17)
 
関数オブジェクト
関数ラッパー
(C++11)
(C++11)
関数の部分適用
(C++20)
(C++11)
関数呼び出し
(C++17)
恒等関数オブジェクト
(C++20)
参照ラッパー
(C++11)(C++11)
演算子ラッパー
否定子
(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未満)
 
 
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以上)
template< class R, class... ArgTypes >
bool operator!=( const std::function<R(ArgTypes...)>& f, std::nullptr_t ) noexcept;
(3) (C++11以上)
template< class R, class... ArgTypes >
bool operator!=( std::nullptr_t, const std::function<R(ArgTypes...)>& f ) noexcept;
(4) (C++11以上)

std::function をNULLポインタと比較します。 空の function (つまり、 callable なターゲットを持っていない function) は等しくなります。 空でない function は等しくなりません。

[編集] 引数

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