std::numeric_limits<T>::max_exponent10

来自cppreference.com
 
 
 
 
 
static const int max_exponent10;
(C++11 前)
static constexpr int max_exponent10;
(C++11 起)

std::numeric_limits<T>::max_exponent10 的值是满足 10n
是浮点数类型 T 的可表示有限值的最大正整数 n

标准特化

Tstd::numeric_limits<T>::max_exponent10 的值
/* 未特化 */0
bool0
char0
signed char0
unsigned char0
wchar_t0
char8_t (C++20 起)0
char16_t (C++11 起)0
char32_t (C++11 起)0
short0
unsigned short0
int0
unsigned int0
long0
unsigned long0
long long (C++11 起)0
unsigned long long (C++11 起)0
floatFLT_MAX_10_EXP
doubleDBL_MAX_10_EXP
long doubleLDBL_MAX_10_EXP

示例

演示对于 float 类型的 max_exponentmax_exponent10max() 的关系:

#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

参阅

底的该数次幂是合法有限浮点数的最大整数加一
(公开静态成员常量)
底的该数次幂是合法正规浮点数的最小负数加一
(公开静态成员常量)
10 的该数次幂是合法正规浮点数的最小负数
(公开静态成员常量)