命名空间
变体
操作

std::numeric_limits<T>::min_exponent10

来自 cppreference.cn
 
 
 
 
 
static const int min_exponent10;
(直到 C++11)
static constexpr int min_exponent10;
(自 C++11 起)

std::numeric_limits<T>::min_exponent10 的值是最小的负数 n,使得 10^n 是浮点类型 T 的有效规范化值。

[编辑] 标准特化

T std::numeric_limits<T>::min_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_MIN_10_EXP
double DBL_MIN_10_EXP
long double LDBL_MIN_10_EXP

[编辑] 示例

演示了 float 类型的 min_exponent、min_exponent10、min() 和 radix 之间的关系

#include <iostream>
#include <limits>
 
int main()
{
    std::cout << "min() = " << std::numeric_limits<float>::min() << '\n'
              << "min_exponent10 = " << std::numeric_limits<float>::min_exponent10 << '\n'
              << std::hexfloat << '\n'
              << "min() = " << std::numeric_limits<float>::min() << '\n'
              << "min_exponent = " << std::numeric_limits<float>::min_exponent << '\n';
}

输出

min() = 1.17549e-38
min_exponent10 = -37
 
min() = 0x1p-126
min_exponent = -125

[编辑] 参见

比基数(radix)的最小负幂大 1 的数,该负幂是有效的规范化浮点值
(公共静态成员常量) [编辑]
比基数(radix)的最大整数幂大 1 的数,该整数幂是有效的有限浮点值
(公共静态成员常量) [编辑]
是有效的有限浮点值的 10 的最大整数幂
(公共静态成员常量) [编辑]