<functional>
演算子
operator==
呼び出し可能オブジェクトが空かどうかをテストします。
template <class Fty>
bool operator==(const function<Fty>& f, null_ptr_type npc);
template <class Fty>
bool operator==(null_ptr_type npc, const function<Fty>& f);
パラメーター
Fty
ラップする関数の型。
f
関数オブジェクト
npc
null ポインター
解説
どちらの演算子も、function
オブジェクトへの参照である引数と null ポインター定数である引数を受け取ります。 function
オブジェクトが空の場合にのみ、両方とも true を返します。
例
// std__functional__operator_eq.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int(int)> fn0;
std::cout << std::boolalpha << "empty == "
<< (fn0 == 0) << std::endl;
std::function<int(int)> fn1(neg);
std::cout << std::boolalpha << "empty == "
<< (fn1 == 0) << std::endl;
return (0);
}
empty == true
empty == false
operator!=
呼び出し可能オブジェクトが空かどうかをテストします。
template <class Fty>
bool operator!=(const function<Fty>& f, null_ptr_type npc);
template <class Fty>
bool operator!=(null_ptr_type npc, const function<Fty>& f);
パラメーター
Fty
ラップする関数の型。
f
関数オブジェクト
npc
null ポインター
解説
どちらの演算子も、function
オブジェクトへの参照である引数と null ポインター定数である引数を受け取ります。 function
オブジェクトが空ではない場合にのみ、両方とも true を返します。
例
// std__functional__operator_ne.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int (int)> fn0;
std::cout << std::boolalpha << "not empty == "
<< (fn0 != 0) << std::endl;
std::function<int (int)> fn1(neg);
std::cout << std::boolalpha << "not empty == "
<< (fn1 != 0) << std::endl;
return (0);
}
not empty == false
not empty == true