Partager via


is_fundamental, classe

Teste si le type est void ou arithmétique.

Syntaxe

template <class Ty>
struct is_fundamental;

Paramètres

Ty
Type à interroger.

Notes

Une instance du prédicat de type a la valeur true si le type Ty est un type fondamental, autrement ditvoid, un type intégral, un type à virgule flottante ou une cv-qualified forme d’un d’entre eux, sinon il contient false.

Exemple

// std__type_traits__is_fundamental.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>

struct trivial
    {
    int val;
    };

int main()
    {
    std::cout << "is_fundamental<trivial> == " << std::boolalpha
        << std::is_fundamental<trivial>::value << std::endl;
    std::cout << "is_fundamental<int> == " << std::boolalpha
        << std::is_fundamental<int>::value << std::endl;
    std::cout << "is_fundamental<const float> == " << std::boolalpha
        << std::is_fundamental<const float>::value << std::endl;
    std::cout << "is_fundamental<void> == " << std::boolalpha
        << std::is_fundamental<void>::value << std::endl;

    return (0);
    }
is_fundamental<trivial> == false
is_fundamental<int> == true
is_fundamental<const float> == true
is_fundamental<void> == true

Spécifications

Header :<type_traits>

Espace de noms : std

Voir aussi

<type_traits>
is_compound, classe