Sdílet prostřednictvím


function::target_type

Získá objekt callable zadejte informace.

const std::type_info& target_type() const;

Poznámky

Členská funkce typeid(void) -li *this je prázdný, v opačném případě vrátí typeid(T), kde T je typ cílového objektu.

Příklad

 

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

Požadavky

Záhlaví: <functional>

Obor názvů: std

Viz také

Referenční dokumentace

function – třída

function::target

Další zdroje

<functional> Členové