命名空间
变体
操作

std::numeric_limits<T>::min_exponent10

来自 cppreference.cn
< cpp‎ | 类型‎ | 数值限制
 
 
 
 
 
static const int min_exponent10;
(C++11 前)
static constexpr int min_exponent10;
(C++11 起)

std::numeric_limits<T>::min_exponent10 的值是最低的负数 n,使得 10n
是浮点类型 T 的有效归一化值。

[edit] 标准特化

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

[edit] 示例

展示了类型 floatmin_exponentmin_exponent10min()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

[edit] 参阅

比最小负数基幂大一,该基幂是有效的正规化浮点值
(public static member constant) [edit]
比最大整数基幂大一,该基幂是有效的有限浮点值
(public static member constant) [edit]
作为有效的有限浮点值的最大整数 10 的幂
(public static member constant) [edit]