次の方法で共有


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

参照

関連項目

function クラス

bad_function_call クラス