is_polymorphic, classe
Teste si le type a une fonction virtuelle.
template<class Ty>
struct is_polymorphic;
Paramètres
- Ty
Type à interroger.
Notes
Une instance du prédicat de type a la valeur True si le type Ty est une classe qui déclare ou hérite d'une fonction virtuelle. Sinon, sa valeur est False.
Exemple
// std_tr1__type_traits__is_polymorphic.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
struct throws
{
throws() throw(int)
{
}
throws(const throws&) throw(int)
{
}
throws& operator=(const throws&) throw(int)
{
}
virtual ~throws()
{
}
int val;
};
int main()
{
std::cout << "is_polymorphic<trivial> == " << std::boolalpha
<< std::is_polymorphic<trivial>::value << std::endl;
std::cout << "is_polymorphic<throws> == " << std::boolalpha
<< std::is_polymorphic<throws>::value << std::endl;
return (0);
}
Configuration requise
En-tête : <type_traits>
Espace de noms : std