std::numeric_limits<T>::has_quiet_NaN
来自 cppreference.com
< cpp | types | numeric limits
static const bool has_quiet_NaN; |
(在 C++11 之前) | |
static constexpr bool has_quiet_NaN; |
(从 C++11 开始) | |
的值 std::numeric_limits<T>::has_quiet_NaN 是 true 对于所有能够表示特殊值“静默 非数字”的类型 T
。此常量对于所有浮点类型都有意义,并且如果 std::numeric_limits<T>::is_iec559 == true,则保证为 true。
[编辑] 标准特化
T
|
的值 std::numeric_limits<T>::has_quiet_NaN |
/* 未特化 */ | 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 |
[编辑] 另请参阅
[静态] |
返回给定浮点类型的静默 NaN 值 (公共静态成员函数) |
[静态] |
标识可以表示特殊值“正无穷大”的浮点类型 (公共静态成员常量) |
标识可以表示特殊值“发出信号的非数字”(NaN) 的浮点类型 (公共静态成员常量) |