function::target_type
Obtient les informations de type sur l'objet appelé.
const std::type_info& target_type() const;
Notes
La fonction membre retourne typeid(void) si *this est vide, sinon il retourne typeid(T), où T est le type de l'objet cible.
Exemple
// 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);
}
Configuration requise
en-tête : <functional>
l'espace de noms : type