std::isgreater
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <cmath> | ||
bool isgreater(float x, float y ); | (dal C++11) | |
bool isgreater(double x, double y ); | (dal C++11) | |
bool isgreater(longdouble x, longdouble y ); | (dal C++11) | |
Determina se il galleggiante
x
numero del punto è maggiore del numero in virgola mobile (y
), senza stabilire eccezioni a virgola mobile.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.
Indice |
[modifica]Parametri
x | - | valore in virgola mobile 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 | - | valore in virgola mobile 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. |
[modifica]Valore di ritorno
true se x > y, false altrimenti
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.
[modifica]Note
Il built-in operator> per numeri in virgola mobile può impostare FE_INVALID se uno o entrambi gli argomenti è NaN. Questa funzione è una versione "tranquilla" di 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.
[modifica]Vedi anche
oggetto funzione attuazione x > y Original: function object implementing x > y The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe template) | |
(C++11) | controlla se il primo a virgola mobile argomento è minore del secondo 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. (funzione) |