feupdatedenv
提供: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. |
| Defined in header <<fenv.h>>
|
||
| int feupdateenv( const fenv_t* envp ); |
(C99以来) | |
まず、現在発生している浮動小数点例外を覚えていて、その後、
envp(fesetenvに類似)が指すオブジェクトから浮動小数点環境を復元し、次に保存された浮動小数点例外を発生させ.Original:
First, remembers the currently raised floating-point exceptions, then restores the floating-point environment from the object pointed to by
envp (similar to fesetenv), then raises the floating-point exceptions that were saved.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.
この関数は、feholdexceptへの以前の呼び出しによって確立されたノンストップ·モードを終了するために使用することができる.
Original:
This function may be used to end the non-stop mode established by an earlier call to feholdexcept.
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.
目次 |
[編集] パラメータ
| envp | - | fenv_tまたはfeholdexceptまたは
fegetenvに等しいの呼び出しによって事前に設定された型のオブジェクトへのポインタFE_DFL_ENVOriginal: pointer to the object of type fenv_t set by an earlier call to feholdexcept or fegetenv or equal to FE_DFL_ENVThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
0成功した場合には、ゼロ以外のその他のとき.
Original:
0 on success, non-zero 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.
[編集] 例
| This section is incomplete Reason: no example |
[編集] も参照してください
| (C99) |
環境を保存し、すべてのステータスフラグをクリアし、今後のすべてのエラーを無視します 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. (機能) |
| (C99) |
現在の浮動小数点環境を保存したり復元します 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. (機能) |
| (C99) |
デフォルトの浮動小数点環境 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. (マクロ定数) |
| C++ documentation for feupdateenv
| |