std::numeric_limits::is_iec559
提供:cppreference.com
< cpp | types | numeric limits
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| static const bool is_iec559 |
(C + + 11時まで) | |
| static constexpr bool is_iec559 |
(C + + 11以来) | |
std::numeric_limits<T>::is_iec559の値は、すべての浮動小数点型trueIEC 559(
T)規格の要求事項を満たすためIEEE 754です。 std::numeric_limits<T>::is_iec559trueであれば、std::numeric_limits<T>::has_infinity、std::numeric_limits<T>::has_quiet_NaN、そしてstd::numeric_limits<T>::has_signaling_NaNもtrueです.Original:
The value of std::numeric_limits<T>::is_iec559 is true for all floating-point types
T which fulfill the requirements of IEC 559 (IEEE 754) standard. If std::numeric_limits<T>::is_iec559 is true, then std::numeric_limits<T>::has_infinity, std::numeric_limits<T>::has_quiet_NaN, and std::numeric_limits<T>::has_signaling_NaN are also true.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 標準の専門分野
T
|
std::numeric_limits<T>::is_iec559の値
Original: value of std::numeric_limits<T>::is_iec559 The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| /* non-specialized */ | false |
| bool | false |
| char | false |
| signed char | false |
| unsigned char | false |
| wchar_t | false |
| char16_t | false |
| char32_t | false |
| short | false |
| unsigned short | false |
| int | false |
| unsigned int | false |
| long | false |
| unsigned long | false |
| long long | false |
| unsigned long long | false |
| float | 通常true
Original: usually true The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| double | 通常true
Original: usually true The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| long double | 通常true
Original: usually true The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] も参照してください
| [静的] |
特殊な値 "正の無限大"を表すことができます浮動小数点型を識別します Original: identifies floating-point types that can represent the special value "positive infinity" The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共の静的メンバ定数) |
| [静的] |
特殊な値 "静かな非数値"(NaN)を表すことができる浮動小数点型を識別します Original: identifies floating-point types that can represent the special value "quiet not-a-number" (NaN) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共の静的メンバ定数) |
| (NaN)の "非数値を合図する"特別な値を表すことができる浮動小数点型を識別します Original: identifies floating-point types that can represent the special value "signaling not-a-number" (NaN) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共の静的メンバ定数) | |