FLT_ROUNDS
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. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <float.h>
|
||
#define FLT_ROUNDS /* implementation defined */ |
(Seit C99) | |
Gibt die Rundung Richtung Fließkomma-Rechenoperationen .
Original:
Specifies the rounding direction of floating-point arithmetic operations.
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.
Value
Original: Value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
-1
|
der Standardwert Rundungsrichtung ist nicht bekannt
Original: the default rounding direction is not known The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
0
|
gegen Null
Original: toward zero The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
1
|
zum nächsten
Original: to nearest The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
2
|
Richtung plus unendlich
Original: towards positive infinity The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
3
|
Richtung minus unendlich
Original: towards negative infinity The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other values | Verhalten Implementierung definiert
Original: implementation-defined behavior The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Siehe auch
C++ documentation for FLT_ROUNDS
|