Sdílet prostřednictvím


function::target

Zkoušky, pokud je uložen callable objekt lze volat podle zadání.

template<class Fty2>
    Fty2 *target();
template<class Fty2>
    const Fty2 *target() const;

Parametry

  • Fty2
    Cílový typ callable objekt k testování.

Poznámky

Typ Fty2 musí být možné volat pro typ argumentu T1, T2, ..., TN a návratový typ Ret.Pokud target_type() == typeid(Fty2), šablonu členské funkce vrátí adresu cílového objektu; v opačném případě vrátí 0.

Typ Fty2 lze volat pro typ argumentu T1, T2, ..., TN a návratový typ Ret if pro lvalues fn, t1, t2, ..., tN typy Fty2, T1, T2, ..., TN, resp. INVOKE(fn, t1, t2, ..., tN) je ve správném formátu a pokud Ret není void, převést na Ret.

Příklad

 

// std_tr1__functional__function_target.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    typedef int (*Myfun)(int); 
    std::function<int (int)> fn0(neg); 
    std::cout << std::boolalpha << "empty == " << !fn0 << std::endl; 
    std::cout << "no target == " << (fn0.target<Myfun>() == 0) << std::endl; 
 
    Myfun *fptr = fn0.target<Myfun>(); 
    std::cout << "val == " << (*fptr)(3) << std::endl; 
 
    std::function<int (int)> fn1; 
    std::cout << std::boolalpha << "empty == " << !fn1 << std::endl; 
    std::cout << "no target == " << (fn1.target<Myfun>() == 0) << std::endl; 
 
    return (0); 
    } 
 
  

Požadavky

Záhlaví: <functional>

Obor názvů: std

Viz také

Referenční dokumentace

function – třída

function::target_type