std::isgreater
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. |
</div> </div>
Déclaré dans l'en-tête <cmath>
|
||
bool isgreater( float x, float y ); |
(depuis C++11) | |
bool isgreater( double x, double y ); |
(depuis C++11) | |
bool isgreater( long double x, long double y ); |
(depuis C++11) | |
Détermine si le
x
nombre à virgule flottante est supérieur au nombre à virgule flottante (y
), sans fixer exceptions de virgule flottante .Original:
Determines if the floating point number
x
is greater than the floating-point number (y
), without setting floating-point exceptions.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.
Sommaire |
[modifier] Paramètres
x | - | valeur du point flottant
Original: 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. |
y | - | valeur du point flottant
Original: 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. |
[modifier] Retourne la valeur
true si x > y, false autrement
Original:
true if x > y, false otherwise
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.
[modifier] Notes
Le operator> intégré pour nombres à virgule flottante peut fixer FE_INVALID si l'un ou l'autre des arguments est NaN. Cette fonction est un "calme" version de operator> .
Original:
The built-in operator> for floating-point numbers may set FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of operator>.
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.
[modifier] Voir aussi
objet-fonction implémentant x > y (classe générique) | |
(C++11) |
vérifie si le premier argument de virgule flottante est inférieure à la seconde Original: checks if the first floating-point argument is less than the second The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |