feholdexcept
来自 cppreference.com
在头文件 <fenv.h> 中定义 |
||
int feholdexcept( fenv_t* envp ); |
(自 C99) | |
首先,将当前的浮点环境保存到 envp
指向的对象中(类似于 fegetenv),然后清除所有浮点状态标志,然后安装非停止模式:未来的浮点异常不会中断执行(不会捕获),直到浮点环境被 feupdateenv 或 fesetenv 恢复。
此函数可以在必须隐藏其可能引发的浮点异常的子例程的开头使用。如果只需要抑制一些异常,而其他异常必须报告,则通常在清除不需要的异常后,使用对 feupdateenv 的调用来结束非停止模式。
内容 |
[编辑] 参数
envp | - | 指向类型为 fenv_t 的对象的指针,浮点环境将被存储到该对象中 |
[编辑] 返回值
成功时为 0,否则为非零值。
[编辑] 示例
运行此代码
#include <stdio.h> #include <fenv.h> #include <float.h> #pragma STDC FENV_ACCESS ON void show_fe_exceptions(void) { printf("current exceptions raised: "); if(fetestexcept(FE_DIVBYZERO)) printf(" FE_DIVBYZERO"); if(fetestexcept(FE_INEXACT)) printf(" FE_INEXACT"); if(fetestexcept(FE_INVALID)) printf(" FE_INVALID"); if(fetestexcept(FE_OVERFLOW)) printf(" FE_OVERFLOW"); if(fetestexcept(FE_UNDERFLOW)) printf(" FE_UNDERFLOW"); if(fetestexcept(FE_ALL_EXCEPT)==0) printf(" none"); printf("\n"); } double x2 (double x) /* times two */ { fenv_t curr_excepts; /* Save and clear current f-p environment. */ feholdexcept(&curr_excepts); /* Raise inexact and overflow exceptions. */ printf("In x2(): x = %f\n", x=x*2.0); show_fe_exceptions(); feclearexcept(FE_INEXACT); /* hide inexact exception from caller */ /* Merge caller's exceptions (FE_INVALID) */ /* with remaining x2's exceptions (FE_OVERFLOW). */ feupdateenv(&curr_excepts); return x; } int main(void) { feclearexcept(FE_ALL_EXCEPT); feraiseexcept(FE_INVALID); /* some computation with invalid argument */ show_fe_exceptions(); printf("x2(DBL_MAX) = %f\n", x2(DBL_MAX)); show_fe_exceptions(); return 0; }
输出
current exceptions raised: FE_INVALID In x2(): x = inf current exceptions raised: FE_INEXACT FE_OVERFLOW x2(DBL_MAX) = inf current exceptions raised: FE_INVALID FE_OVERFLOW