다음을 통해 공유


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_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>