std::numeric_limits::min_exponent

static const int min_exponent;
(C++11 前)
static constexpr int min_exponent;
(C++11 起)

std::numeric_limits<T>::min_exponent 的值是满足 rn-1
是浮点类型 T 合法正规值的最低负数 n ,其中 rstd::numeric_limits<T>::radix

标准特化

T std::numeric_limits<T>::min_exponent 的值
/* non-specialized */ 0
bool 0
char 0
signed char 0
unsigned char 0
wchar_t 0
char16_t 0
char32_t 0
short 0
unsigned short 0
int 0
unsigned int 0
long 0
unsigned long 0
long long 0
unsigned long long 0
float FLT_MIN_EXP
double DBL_MIN_EXP
long double LDBL_MIN_EXP

示例

为 float 类型演示 min_exponent 、 min_exponent10 、 min 及 radix 的关系:

#include <iostream>
int main()
{
    std::cout << "min() = " << std::numeric_limits<float>::min() << '\n'
              << "min_exponent10 = " << std::numeric_limits<float>::min_exponent10 << '\n'
              << std::hexfloat
              << "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

参阅

[静态]
给定类型的表示所用的基或整数底
(公开静态成员常量)
[静态]
10 的该数次幂是合法正规浮点值的最小负数
(公开静态成员常量)
[静态]
底的该数次幂是合法有限浮点值的最大整数加一
(公开静态成员常量)
[静态]
10 的该数次幂是合法有限浮点值的最大整数
(公开静态成员常量)

版本历史

  • (当前 | 先前 2017年7月16日 (日) 18:51Fruderica讨论 | 贡献. . (2,395字节) (-729). . (撤销)
  • 当前 | 先前 2014年10月26日 (日) 18:18P12bot讨论 | 贡献 . . (3,124字节) (0). . (Fix some translations) (撤销)
  • 当前 | 先前 2013年7月2日 (二) 11:52P12bot讨论 | 贡献 . . (3,124字节) (-334). . (Use {{lc}}. Update links. Various fixes.) (撤销)
  • 当前 | 先前 2012年11月2日 (五) 14:39P12bot讨论 | 贡献 . . (3,458字节) (+361). . (r2.7.3) (机器人添加:de, en, es, fr, it, ja, pt, ru) (撤销)
  • 当前 | 先前 2012年10月27日 (六) 12:42P12讨论 | 贡献 . . (3,097字节) (0). . (1个修订: Translate from the English version) (撤销)
  • 当前 | 先前 2012年10月26日 (五) 06:00TranslationBot讨论 | 贡献. . (3,097字节) (-33). . (Translated from the English version using Google Translate) (撤销)
  • 当前 | 先前 2012年10月26日 (五) 03:54P12讨论 | 贡献 . . (3,130字节) (0). . (1个修订: Translate from the English version) (撤销)
  • 当前 | 先前) 2012年10月25日 (四) 12:00TranslationBot讨论 | 贡献. . (3,130字节) (+3,130). . (Translated from the English version using Google Translate)