std::numeric_limits<T>::max_exponent10
From cppreference.com
static const int max_exponent10; |
(C++11まで) | |
| static constexpr int max_exponent10; |
(C++11以降) | |
std::numeric_limits<T>::max_exponent10の値は、浮動小数点型Tの表現可能な有限値である10nを満たす最大の正の数nです。
[編集] 標準特殊化
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 |
[編集] 例
max_exponent、max_exponent10、およびmax()の関係をfloat型で示します。
このコードを実行
#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
[編集] 関連項目
| [static] |
有効な有限の浮動小数点数値である基数の最大の整数べき乗に1を加えたもの (public static member constant) |
| [static] |
有効な正規化された浮動小数点数値である基数の最小の負のべき乗に1を加えたもの (public static member constant) |
| [static] |
有効な正規化された浮動小数点数値である10の最小の負のべき乗 (public static member constant) |