Compartilhar via


function::target_type

Obtém digite informações sobre o objeto que pode ser chamado.

const std::type_info& target_type() const;

Comentários

A função de membro retorna typeid(void) se *this está vazio, caso contrário retorna typeid(T), onde T é o tipo de objeto de destino.

Exemplo

 

// 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); 
    } 
 
  

Requisitos

Cabeçalho: <functional>

Namespace: std

Consulte também

Referência

function Class

function::target

Outros recursos

<functional> Membros