function::operator unspecified
格納されている呼び出し可能オブジェクトが存在するかどうかをテストします。
operator unspecified();
解説
この演算子は、オブジェクトが空でない場合にのみ true になるような、bool に変換できる値を返します。オブジェクトが空かどうかをテストするときに使用します。
使用例
// 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