std::is_arithmetic
Определено в заголовке <type_traits> | ||
|---|---|---|
template< class T > struct is_arithmetic; | (с C++11) |
std::is_arithmetic является UnaryTypeTrait.
Если T является арифметическим типом (то есть целым типом или типом с плавающей точкой) или cv-qualified версией такового, предоставляет статическую константу-член value, равную true. Для любого другого типа value равно false.
Поведение программы, добавляющей специализации для std::is_arithmetic или std::is_arithmetic_v(с C++17), не определено.
Параметры шаблона
| T | - | тип для проверки |
Вспомогательный шаблон переменной
template< class T > inline constexpr bool is_arithmetic_v = is_arithmetic<T>::value; | (с C++17) |
Наследуется от std::integral_constant
Статические константы-члены
| value
[static] | true если T является арифметическим типом, false в противном случае (публичная статическая константа-член) |
Члены-функции
| operator bool | преобразует объект в bool, возвращает value (публичная функция-член) |
| operator()
(C++14) | возвращает value (публичная функция-член) |
Типы-члены
| Тип | Определение |
|---|---|
value_type | bool |
type | std::integral_constant<bool, value> |
Примечания
Арифметические типы — это встроенные типы, для которых определены арифметические операторы (+, -, *, /). (возможно, в сочетании с обычными арифметическими преобразованиями).
Специализации std::numeric_limits предоставляются для всех арифметических типов.
Возможная реализация
template<class T>
struct is_arithmetic : std::integral_constant<bool,
std::is_integral<T>::value ||
std::is_floating_point<T>::value> {}; |
Пример
#include <atomic>
#include <cstddef>
#include <type_traits>
class A {};
enum class B : int { e };
static_assert(
std::is_arithmetic_v<bool> == true and
std::is_arithmetic_v<char> == true and
std::is_arithmetic_v<char const> == true and
std::is_arithmetic_v<int> == true and
std::is_arithmetic_v<int const> == true and
std::is_arithmetic_v<float> == true and
std::is_arithmetic_v<float const> == true and
std::is_arithmetic_v<std::size_t> == true and
std::is_arithmetic_v<char&> == false and
std::is_arithmetic_v<char*> == false and
std::is_arithmetic_v<int&> == false and
std::is_arithmetic_v<int*> == false and
std::is_arithmetic_v<float&> == false and
std::is_arithmetic_v<float*> == false and
std::is_arithmetic_v<A> == false and
std::is_arithmetic_v<B> == false and
std::is_arithmetic_v<decltype(B::e)> == false and
std::is_arithmetic_v<std::byte> == false and
std::is_arithmetic_v<std::atomic_int> == false
);
int main() {}См. также
|
(C++11) | проверяет, является ли тип целым типом (шаблон класса) |
|
(C++11) | проверяет, является ли тип типом с плавающей точкой (шаблон класса) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/types/is_arithmetic