Compartilhar via


Classe is_polymorphic

Testes se tipo tem uma função virtual.

template<class Ty>
    struct is_polymorphic;

Parâmetros

  • Ty
    O tipo de consulta.

Comentários

Uma instância do tipo de predicado contém true se o tipo de Ty é uma classe que declara ou herda de uma função virtual, de outra forma mantém false.

Exemplo

 

// 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::tr1::is_polymorphic<trivial>::value << std::endl; 
    std::cout << "is_polymorphic<throws> == " << std::boolalpha 
        << std::tr1::is_polymorphic<throws>::value << std::endl; 
 
    return (0); 
    } 
 
is_polymorphic<trivial> == false is_polymorphic<throws> == true

Requisitos

Cabeçalho:<type_traits>

Namespace: std::tr1

Consulte também

Referência

<type_traits>

Classe is_abstract