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 的值是最大的正整數 n,使得 10n
是浮點型別 T
的一個可表示的有限值。
[編輯] 標準特化
T
|
std::numeric_limits<T>::max_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_MAX_10_EXP |
double | DBL_MAX_10_EXP |
long double | LDBL_MAX_10_EXP |
[編輯] 示例
演示了 float 型別 max_exponent、max_exponent10
和 max() 之間的關係
執行此程式碼
#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
[編輯] 參閱
[靜態] |
比最大整數基冪大一,該基冪是有效的有限浮點值 (public static member constant) |
[靜態] |
比最小負數基冪大一,該基冪是有效的正規化浮點值 (public static member constant) |
[靜態] |
作為有效的正規化浮點值的最小負 10 的冪 (public static member constant) |