std::isgreater
Aus 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. |
definiert in Header <cmath> | ||
bool isgreater(float x, float y ); | (seit C++11) | |
bool isgreater(double x, double y ); | (seit C++11) | |
bool isgreater(longdouble x, longdouble y ); | (seit C++11) | |
Bestimmt, ob der Gleitkommazahl
x
größer ist als die Gleitpunktzahl (y
), ohne Gleitkomma-Exceptions .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.
Inhaltsverzeichnis |
[Bearbeiten]Parameter
x | - | Floating-Point-Wert 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 | - | Floating-Point-Wert 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. |
[Bearbeiten]Rückgabewert
true wenn x > y, false anders
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.
[Bearbeiten]Notes
Der eingebaute operator> für Fließkomma-Zahlen gesetzt FE_INVALID wenn eine oder beide der Argumente NaN. Diese Funktion ist eine "stille" Version 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.
[Bearbeiten]Siehe auch
Funktions-Objekt Umsetzung 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. (Klassen-Template) | |
(C++11) | prüft, ob die erste Gleitkomma-Argument kleiner als die zweite 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. (Funktion) |