共用方式為


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物件和引數可為 null 指標常數。 兩者皆為 true,則傳回時,才function物件是空的。

範例

 

// 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); 
    } 
 
  

需求

標頭: <functional>

Namespace: 標準

請參閱

參考

operator!= <functional>

其他資源

<functional> 成員