다음을 통해 공유


function::target_type

가져옵니다 호출 가능한 객체에 정보를 입력합니다.

const std::type_info& target_type() const;

설명

멤버 함수 반환 typeid(void) 경우 *this 그렇지 않으면 비어 있는 typeid(T), 어디 T 의 대상 개체 유형입니다.

예제

 

// std_tr1__functional__function_target_type.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    std::function<int (int)> fn0(neg); 
    std::cout << std::boolalpha << "empty == " << !fn0 << std::endl; 
    std::cout << "type == " << fn0.target_type().name() << std::endl; 
 
    std::function<int (int)> fn1; 
    std::cout << std::boolalpha << "empty == " << !fn1 << std::endl; 
    std::cout << "type == " << fn1.target_type().name() << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <functional>

네임 스페이스: 국방 표준

참고 항목

참조

function Class

function::target

기타 리소스

<functional> 멤버