Freigeben über


function::target_type

Ruft Typinformationen über das aufrufbare Objekt ab.

const std::type_info& target_type() const;

Hinweise

Die Memberfunktion gibt typeid(void) zurück, wenn *this leer ist, andernfalls wird typeid(T)zurück, in dem T der Typ des Zielobjekts ist.

Beispiel

 

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

Anforderungen

Header: <functional>

Namespace: std

Siehe auch

Referenz

function Class

function::target

Weitere Ressourcen

<functional> Member