- cfenv[meta header]
- std[meta namespace]
- function[meta id-type]
- cpp11[meta cpp]
namespace std {
int fesetexceptflag(const fexcept_t *flagp, int excepts);
}
- fexcept_t[link fexcept_t.md]
浮動小数点例外を発生させずに、浮動小数点例外の状態を設定する。
flagp
が指す浮動小数点例外の状態のうち、excepts
で指定された種類の浮動小数点例外のみを、現在の浮動小数点例外の状態として設定する。
この関数は、浮動小数点例外を発生させない。
excepts
が0
であった場合、この関数は0
を返す- 指定された浮動小数点例外を正しく設定できた場合、この関数は
0
を返す - それ以外の場合、この関数は
0
以外を返す
#include <cassert>
#include <cfenv>
int main()
{
// ゼロ割りを発生させる
float result = 1.0f / 0.0f;
// 現在の浮動小数点例外の状態を取得
std::fexcept_t excepts = 0;
std::fegetexceptflag(&excepts, FE_ALL_EXCEPT);
int div_by_zero_state = std::fetestexcept(FE_DIVBYZERO);
// 浮動小数点例外の状態を変更する
std::feclearexcept(FE_ALL_EXCEPT);
assert(std::fetestexcept(FE_DIVBYZERO) == 0);
// 保持しておいた浮動小数点例外の状態のうち、
// ゼロ除算の状態のみを復旧させる
std::fesetexceptflag(&excepts, FE_DIVBYZERO);
assert(div_by_zero_state == std::fetestexcept(FE_DIVBYZERO));
}
- std::fesetexceptflag[color ff0000]
- fexcept_t[link fexcept_t.md]
- std::fegetexceptflag[link fegetexceptflag.md]
- std::feclearexcept[link feclearexcept.md]
- std::fetestexcept[link fetestexcept.md]
- FE_ALL_EXCEPT[link fe_all_except.md]
- FE_DIVBYZERO[link fe_divbyzero.md]
- C++11
- Clang, C++11 mode: 3.0
- GCC, C++11 mode: 4.3.0
- ICC: ??
- Visual C++: 2013, 2015
- コンパイルオプション
/fp:strict
または#pragma fenv_access (on)
が必要。さもなくば、正しく動作しないおそれがある。
- コンパイルオプション