std::numeric_limits<T>:: max_exponent10
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic types | |||||||||||||||||||||
| Fixed width integer types (C++11) | |||||||||||||||||||||
| Fixed width floating-point types (C++23) | |||||||||||||||||||||
|
|||||||||||||||||||||
| Numeric limits | |||||||||||||||||||||
| C numeric limits interface | |||||||||||||||||||||
| Runtime type information | |||||||||||||||||||||
|
|||||||||||||||||||||
| Static constants | ||||
|
(C++11)
|
||||
|
numeric_limits::max_exponent10
|
||||
| Static member functions | ||||
|
(C++11)
|
||||
| Helper types | ||||
|
static
const
int
max_exponent10
;
|
(C++11まで) | |
|
static
constexpr
int
max_exponent10
;
|
(C++11以降) | |
std::
numeric_limits
<
T
>
::
max_exponent10
の値は、浮動小数点型
T
の有限値として表現可能な最大の正の数
n
であり、
\(\scriptsize 10^n\)
10
n
が表現可能な値となる。
標準特殊化
T
|
std:: numeric_limits < T > :: max_exponent10 の値 |
| /* non-specialized */ | 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
関連項目
|
[static]
|
有効な有限浮動小数点値となる基数の整数乗の最大値より1大きい値
(公開静的メンバ定数) |
|
[static]
|
有効な正規化浮動小数点値となる基数の最小負のべき乗より1大きい値
(公開静的メンバ定数) |
|
[static]
|
有効な正規化浮動小数点値となる10の最小負のべき乗
(公開静的メンバ定数) |