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
Function 개체npc
Null 포인터입니다.
설명
두 연산자에 대 한 참조는 인수를 사용 하 여 function 개체 및 널 포인터 상수 인수입니다.둘 다 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>
네임 스페이스: 국방 표준