[ Web Proxy ]
URL:
Viewing: https://fr.cppreference.com/cpp/numeric/fenv [Back]  [Original]

Floating-point environment cppreference.com
cppreference.com
Espaces de noms
Variantes

Floating-point environment

De cppreference.com

<metanoindex/>

 
 
Bibliothque Numerics
Fonctions mathmatiques courantes
Virgule flottante environnement
Nombres complexes
Tableaux numriques
La gnration de nombres pseudo-alatoires
Moment de la compilation arithmtique rationnelle (C++11)
Gnriques des oprations numriques
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota (C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
Virgule flottante environnement
Fonctions
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
feclearexcept (C++11)
fetestexcept (C++11)
feraiseexcept (C++11)
fegetexceptflag
fesetexceptflag
(C++11)
(C++11)
fegetround
fesetround
(C++11)
(C++11)
fegetenv
fesetenv
(C++11)
feholdexcept (C++11)
feupdateenv (C++11)
Macro constantes
Original:
Macro constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
FE_ALL_EXCEPT
FE_DIVBYZERO
FE_INEXACT
FE_INVALID
FE_OVERFLOW
FE_UNDERFLOW
(C++11)
FE_DOWNWARD
FE_TONEAREST
FE_TOWARDZERO
FE_UPWARD
(C++11)
FE_DFL_ENV (C++11)
 
L'environnement en virgule flottante est l'ensemble des indicateurs d'tat virgule flottante et des modes de contrle pris en charge par l'application. Il est thread-local, chaque fil hrite de l'tat initial de l'environnement virgule flottante partir du fil parent. Oprations en virgule flottante modifier les indicateurs d'tat virgule flottante pour indiquer les rsultats anormaux ou de l'information auxiliaire. L'tat des modes de contrle virgule flottante affecte les rsultats de certaines oprations en virgule flottante .
Original:
The floating-point environment is the set of floating-point status flags and control modes supported by the implementation. It is thread-local, each thread inherits the initial state of its floating-point environment from the parent thread. Floating-point operations modify the floating-point status flags to indicate abnormal results or auxiliary information. The state of floating-point control modes affects the outcomes of some floating-point operations.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
L'accs l'environnement en virgule flottante et la modification n'a de sens que lorsque #pragma STDC FENV_ACCESS est rgl sur ON. Sinon, la mise en uvre est libre de penser que les modes de contrle virgule flottante sont toujours ceux par dfaut et que les indicateurs d'tat virgule flottante ne sont jamais tests ou modifis. Dans la pratique, rares sont les compilateurs actuels prennent en charge la #pragma explicitement, mais la plupart des compilateurs autorisent un accs significatif l'environnement en virgule flottante de toute faon .
Original:
The floating-point environment access and modification is only meaningful when #pragma STDC FENV_ACCESS is set to ON. Otherwise the implementation is free to assume that floating-point control modes are always the default ones and that floating-point status flags are never tested or modified. In practice, few current compilers support the #pragma explicitly, but most compilers allow meaningful access to the floating-point environment anyway.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Types

Defined in header <cfenv>
fenv_t
Le type qui reprsente l'ensemble de la virgule flottante environnement
Original:
The type representing the entire floating-point environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
fexcept_t
Le type reprsentant tous les indicateurs d'tat virgule flottante collectivement
Original:
The type representing all floating-point status flags collectively
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Fonctions

efface les indicateurs d'tat spcifies virgule flottante
Original:
clears the specified floating-point status flags
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
dtermine quels sont les indicateurs spcifis tat virgule flottante sont dfinies
Original:
determines which of the specified floating-point status flags are set
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
soulve les spcifies exceptions de virgule flottante
Original:
raises the specified 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.

(fonction) [edit]
copie de l'tat des drapeaux spcifis tat virgule flottante en provenance ou l'environnement en virgule flottante
Original:
copies the state of the specified floating-point status flags from or to the floating-point environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
(C++11)
(C++11)
obtient ou dfinit direction d'arrondi
Original:
gets or sets rounding direction
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
sauvegarde ou restaure l'environnement actuel point flottant
Original:
saves or restores the current floating point environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
sauvegarde de l'environnement, efface tous les indicateurs d'tat et ignore toutes les erreurs futures
Original:
saves the environment, clears all status flags and ignores all future errors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]
(C++11)
restaure l'environnement en virgule flottante et soulve le lever des exceptions prcdemment
Original:
restores the floating-point environment and raises the previously raise exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction) [edit]

Macros

exceptions de virgule flottante
Original:
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.

(constante macro) [edit]
direction d'arrondi en virgule flottante
Original:
floating-point rounding direction
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante macro) [edit]
(C++11)
dfaut en virgule flottante environnement
Original:
default floating-point environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(constante macro) [edit]

Notes

Les exceptions en virgule flottante ne sont pas lis aux exceptions C + +. Quand une opration en virgule flottante soulve une exception de virgule flottante, l'tat de l'environnement change flottants, qui peuvent tre tests avec std::fetestexcept, mais l'excution d'un programme C + + sur la plupart des implmentations se poursuit sans interruption .
Original:
The floating-point exceptions are not related to the C++ exceptions. When a floating-point operation raises a floating-point exception, the status of the floating-point environment changes, which can be tested with std::fetestexcept, but the execution of a C++ program on most implementations continues uninterrupted.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Il existe des extensions du compilateur qui peuvent tre utiliss pour gnrer des exceptions C + + automatiquement chaque fois qu'une exception en virgule flottante est souleve:
Original:
There are compiler extensions that may be used to generate C++ exceptions automatically whenever a floating-point exception is raised:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • feenableexcept() GNU libc fonction permet le pigeage des exceptions virgule flottante, ce qui gnre le signal de SIGFPE. Si l'option du compilateur -fnon-call-exceptions a t utilis, le gestionnaire de ce signal peut jeter dfini par l'utilisateur exception C + + .
    Original:
    GNU libc function feenableexcept() enables trapping of the floating-point exceptions, which generates the signal SIGFPE. If the compiler option -fnon-call-exceptions was used, the handler for that signal may throw a user-defined C++ exception.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • _control87() Microsoft WinAPI fonction permet le pigeage des exceptions virgule flottante, ce qui gnre une exception matriel, qui peut tre converti en C + + avec les exceptions _set_se_translator .
    Original:
    Microsoft WinAPI function _control87() enables trapping of the floating-point exceptions, which generates a hardware exception, which can be converted to C++ exceptions with _set_se_translator.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.

Web Proxy Viewer  |  New URL  |  Original Page