Udostępnij za pośrednictwem


is_fundamental — Klasa

Sprawdza, czy typ jest nieważne lub arytmetyczne.

template<class Ty>
    struct is_fundamental;

Parametry

  • Ty
    Typ kwerendy.

Uwagi

Wystąpienie typu predykat posiada wartość PRAWDA, jeśli typ Ty jest typu podstawowych, to znaczy, void, typem całkowitym, pływające teksu, lub cv-qualified formularza jednego z nich, inaczej przechowuje wartość false.

Przykład

 

// std_tr1__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); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Przestrzeń nazw: std

Zobacz też

Informacje

<type_traits>

is_compound — Klasa

Inne zasoby

<type_traits> Członkowie