is_fundamental Class
Testy, jeśli typem jest nieważny lub arytmetycznych.
template<class Ty>
struct is_fundamental;
Parametry
- Ty
Typ kwerendy.
Uwagi
Wystąpienie predykat typu posiada true, jeśli typ Ty jest typu podstawowych, czyli void, typem całkowitym przestawne punktowy, lub cv-qualified formularz 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>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie