std::numeric_limits<T>::max_exponent10
来自 cppreference.com
< cpp | types | numeric limits
static const int max_exponent10; |
(直到 C++11) | |
static constexpr int max_exponent10; |
(自 C++11 起) | |
的值 std::numeric_limits<T>::max_exponent10 是最大的正数 n 使得 10n
是浮点类型 T
的一个可表示的有限值。
[编辑] 标准特化
T
|
的值 std::numeric_limits<T>::max_exponent10 |
/* 非特化 */ | 0 |
bool | 0 |
char | 0 |
signed char | 0 |
unsigned char | 0 |
wchar_t | 0 |
char8_t (自 C++20 起) | 0 |
char16_t (自 C++11 起) | 0 |
char32_t (自 C++11 起) | 0 |
short | 0 |
unsigned short | 0 |
int | 0 |
unsigned int | 0 |
long | 0 |
unsigned long | 0 |
long long (自 C++11 起) | 0 |
unsigned long long (自 C++11 起) | 0 |
float | FLT_MAX_10_EXP |
double | DBL_MAX_10_EXP |
long double | LDBL_MAX_10_EXP |
[编辑] 示例
演示了 max_exponent、max_exponent10
和 max() 之间的关系,对于类型 float
运行此代码
#include <iostream> #include <limits> int main() { std::cout << "max() = " << std::numeric_limits<float>::max() << '\n' << "max_exponent10 = " << std::numeric_limits<float>::max_exponent10 << '\n' << std::hexfloat << '\n' << "max() = " << std::numeric_limits<float>::max() << '\n' << "max_exponent = " << std::numeric_limits<float>::max_exponent << '\n'; }
输出
max() = 3.40282e+38 max_exponent10 = 38 max() = 0x1.fffffep+127 max_exponent = 128
[编辑] 另请参阅
[静态] |
基数的有效有限浮点数的最大整数幂加 1 (公共静态成员常量) |
[静态] |
基数的有效归一化浮点数的最小负幂加 1 (公共静态成员常量) |
[静态] |
有效归一化浮点数的十的最小负幂 (公共静态成员常量) |