is_arithmetic Class
Testy, jeśli typem jest arytmetycznych.
template<class Ty>
struct is_arithmetic;
Parametry
- Ty
Typ kwerendy.
Uwagi
Wystąpienie predykat typu posiada true, jeśli typ Ty jest typ arytmetyczny, oznacza to, że typ integralny lub zmiennoprzecinkową punktowy, lub cv-qualified formularz jednego z nich, inaczej przechowuje wartość false.
Przykład
// std_tr1__type_traits__is_arithmetic.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_arithmetic<trivial> == " << std::boolalpha
<< std::is_arithmetic<trivial>::value << std::endl;
std::cout << "is_arithmetic<int> == " << std::boolalpha
<< std::is_arithmetic<int>::value << std::endl;
std::cout << "is_arithmetic<float> == " << std::boolalpha
<< std::is_arithmetic<float>::value << std::endl;
return (0);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie