std::fegetenv, std::fesetenv
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cfenv>
|
||
int fegetenv( std::fenv_t* envp ) |
(1) | (C++11以上) |
int fesetenv( const std::fenv_t* envp ); |
(2) | (C++11以上) |
envp
が指すオブジェクトに、浮動小数点環境のステータスを格納しようとしますOriginal:
Attempts to store the status of the floating-point environment in the object pointed to by
envp
.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
が指すオブジェクトから浮動小数点環境を確立しようとします。そのオブジェクトの値は、以前std::feholdexceptへのコールによって取得またはstd::fegetenv
または浮動小数点マクロ定数である必要があります。浮動小数点ステータスフラグのいずれかがenvp
に設定されている場合、彼らは(実行が中断しない)(そしてstd::fetestexceptによって検証可能である)環境で設定となっているが、対応する浮動小数点例外は発生しませんOriginal:
Attempts to establish the floating-point environment from the object pointed to by
envp
. The value of that object must be previously obtained by a call to std::feholdexcept or std::fegetenv
or be a floating-point macro constant. If any of the floating-point status flags are set in envp
, they become set in the environment (and are then testable with std::fetestexcept), but the corresponding floating-point exceptions are not raised (execution continues uninterrupted)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 | - | 浮動小数点環境のステータスを保持するタイプstd::fenv_tのオブジェクトへのポインタ.
Original: pointer to the object of type std::fenv_t which holds the status of 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. |
値を返します
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.