FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN
De cppreference.com
![]() | 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. |
Déclaré dans l'en-tête <cmath> | ||
#define FP_NORMAL /*implementation defined*/ | (depuis C++11) | |
#define FP_SUBNORMAL /*implementation defined*/ | (depuis C++11) | |
#define FP_ZERO /*implementation defined*/ | (depuis C++11) | |
#define FP_INFINITE /*implementation defined*/ | (depuis C++11) | |
#define FP_NAN /*implementation defined*/ | (depuis C++11) | |
Le
FP_NORMAL
, FP_SUBNORMAL
, FP_ZERO
, FP_INFINITE
, FP_NAN
macros représentent chacun une catégorie distincte de nombres à virgule flottante. Ils ont tous s'étendre à une expression constante entière .Original:
The
FP_NORMAL
, FP_SUBNORMAL
, FP_ZERO
, FP_INFINITE
, FP_NAN
macros each represent a distinct category of floating-point numbers. They all expand to an integer constant expression.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.
Constante Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Explanation |
FP_NORMAL | indique que la valeur est normale', c'est à dire pas une infinité, inférieure à la normale, pas-a-number ou nulle Original: indicates that the value is normal, i.e. not an infinity, subnormal, not-a-number or zero The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
FP_SUBNORMAL | indique que la valeur est inférieure à la normale' Original: indicates that the value is subnormal The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
FP_ZERO | indique que la valeur est zéro positif ou négatif Original: indicates that the value is positive or negative zero The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
FP_INFINITE | indique que la valeur n'est pas représentable par le type sous-jacent (infini positif ou négatif) Original: indicates that the value is not representable by the underlying type (positive or negative infinity) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
FP_NAN | indique que la valeur est non-nombre-(NaN) Original: indicates that the value is 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. |
[modifier]Voir aussi
(C++11) | catégorise la valeur du point donné flottante Original: categorizes the given floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |