Freigeben über


is_enum Class

Prüft, ob Typ eine Enumeration ist.

template<class Ty>
    struct is_enum;

Parameter

  • Ty
    Der abzufragende Typ.

Hinweise

Eine Instanz des Typs prädikats behält True an, wenn der Typ Ty ein Enumerationstyp oder ein cv-qualified Form eines Enumerationstyps ist, andernfalls wird er false.

Beispiel

 

// std_tr1__type_traits__is_enum.cpp 
// compile with: /EHsc 
#include <type_traits> 
#include <iostream> 
 
struct trivial 
    { 
    int val; 
    }; 
 
enum color { 
    red, greed, blue}; 
 
int main() 
    { 
    std::cout << "is_enum<trivial> == " << std::boolalpha 
        << std::is_enum<trivial>::value << std::endl; 
    std::cout << "is_enum<color> == " << std::boolalpha 
        << std::is_enum<color>::value << std::endl; 
    std::cout << "is_enum<int> == " << std::boolalpha 
        << std::is_enum<int>::value << std::endl; 
 
    return (0); 
    } 
 
  

Anforderungen

Header: <type_traits>

Namespace: std

Siehe auch

Referenz

<type_traits>

is_integral Class

Weitere Ressourcen

<type_traits> Member