operator== <functional>
Prüft, ob aufrufbares Objekt leer ist.
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);
Parameter
Fty
Der Funktionstyp, das umschlossen werden soll.f
Das Funktionsobjektnpc
Ein NULL-Zeiger.
Hinweise
Die beiden Operatoren nehmen ein Argument, das einen Verweis auf ein function-Objekt und ein Argument ist, das eine NULL-Zeiger-Konstante ist.Beide Gibt true zurück, wenn nur das function-Objekt leer ist.
Beispiel
// 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);
}
Anforderungen
Header: <functional>
Namespace: std