std::isgreater
Da 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. |
Definido no cabeçalho <cmath>
|
||
bool isgreater( float x, float y ); |
(desde C++11) | |
bool isgreater( double x, double y ); |
(desde C++11) | |
bool isgreater( long double x, long double y ); |
(desde C++11) | |
Determina se o
x
número de ponto flutuante é maior do que o número de ponto flutuante (y
), sem definir exceções de ponto flutuante.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.
Índice |
[editar] Parâmetros
x | - | flutuando valor de ponto
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 | - | flutuando valor de ponto
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. |
[editar] Valor de retorno
true se x > y, false contrário
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.
[editar] Notas
O operator> built-in para números de ponto flutuante pode definir FE_INVALID se um ou ambos os argumentos é NaN. Esta função é uma versão "tranqüila" 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.
[editar] Veja também
objeto de função implementar 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. (modelo de classe) | |
(C++11) |
verifica se o argumento de ponto flutuante primeiro é menor do que o segundo 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. (função) |