std::numeric_limits<T>::is_iec559
来自 cppreference.cn
static const bool is_iec559; |
(C++11 前) | |
static constexpr bool is_iec559; |
(C++11 起) | |
std::numeric_limits<T>::is_iec559 的值为 true,表示所有满足 IEC 559 (即 IEEE 754) 标准要求的浮点类型 T
。如果 std::numeric_limits<T>::is_iec559 为 true,那么 std::numeric_limits<T>::has_infinity、std::numeric_limits<T>::has_quiet_NaN 和 std::numeric_limits<T>::has_signaling_NaN 也为 true。
[编辑] 标准特化
T
|
std::numeric_limits<T>::is_iec559 的值 |
/* 未特化 */ | false |
bool | false |
char | false |
signed char | false |
unsigned char | false |
wchar_t | false |
char8_t (C++20起) | false |
char16_t (C++11起) | false |
char32_t (C++11起) | false |
short | false |
unsigned short | false |
int | false |
unsigned int | false |
long | false |
unsigned long | false |
long long (C++11起) | false |
unsigned long long (C++11起) | false |
float | 通常为 true |
double | 通常为 true |
long double | 通常为 true |
[编辑] 参阅
[静态] |
确定可以表示特殊值“正无穷”的浮点类型 (public static member constant) |
[静态] |
确定可以表示特殊值“安静的非数”(quiet not-a-number,NaN)的浮点类型 (public static member constant) |
确定可以表示特殊值“发信的非数”(signaling not-a-number,NaN)的浮点类型 (public static member constant) |