operator!= <functional>
Testet, ob aufrufbares Objekt nicht 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 einzubindende.f
Das Funktionsobjektnpc
Ein NULL-Zeiger.
Hinweise
Beide Operatoren verwenden ein Argument, das ein Verweis auf ein function-Objekt und ein Argument ist, das eine NULL-Zeiger-Konstante ist. Beide geben nur dann true zurück, wenn das function-Objekt nicht leer ist.
Beispiel
// 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);
}
Anforderungen
Header: <functional>
Namespace: std