function::target_type
Obtiene la información de tipo del objeto accesible.
const std::type_info& target_type() const;
Comentarios
La función miembro devuelve typeid(void) si *this está vacía; de lo contrario devuelve typeid(T), donde es el tipo T del objeto de destino.
Ejemplo
// 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
encabezado: <funcional>
espacio de nombres: std