共用方式為


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 指標常數的引數。 ,只有在 function 物件不是空的,則傳回 true。

範例

 

// std_tr1__functional__operator_ne.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 == " 
        << (fn0 != 0) << std::endl; 
 
    std::function<int (int)> fn1(neg); 
    std::cout << std::boolalpha << "not empty == " 
        << (fn1 != 0) << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <functional>

命名空間: std

請參閱

參考

operator== <functional>