命名空间
变体
操作

std::numeric_limits<T>::min_exponent

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

std::numeric_limits<T>::min_exponent 的值是最低的负数 n,使得 rn-1
,其中 rstd::numeric_limits<T>::radix,是浮点类型 T 的有效正规化值。

[edit] 标准特化

T std::numeric_limits<T>::min_exponent 的值
/* 非特化 */ 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_EXP
double DBL_MIN_EXP
long double LDBL_MIN_EXP

[edit] 示例

演示了 min_exponentmin_exponent10min()radix 对于类型 float 的关系

#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

[edit] 参见

[静态]
给定类型的表示形式所使用的基数或整数基
(public static member constant) [编辑]
是有效正规化浮点值的最小负十的幂
(public static member constant) [编辑]
比基数的最大整数幂大一,后者是有效的有限浮点值
(public static member constant) [编辑]
是有效有限浮点值的最大十的整数幂
(public static member constant) [编辑]