operator== <functional>
测试,则可调用对象为空。
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 对象和参数的引用空指针常数的参数。 只有当 function 对象为空,都返回 true。
示例
// std_tr1__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);
}
要求
标头: <起作用的>
命名空间: std