function::operator unspecified
如果存储的可调用包装对象存在,测试。
operator unspecified();
备注
运算符返回转换成与一个具体值的 bool 的值,仅当对象不为 null。 使用该测试对象是否为空。
示例
// std_tr1__functional__function_operator_bool.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 == " << (bool)fn0 << std::endl;
std::function<int (int)> fn1(neg);
std::cout << std::boolalpha << "not empty == " << (bool)fn1 << std::endl;
return (0);
}
要求
标头: <functional>
命名空间: std