命名空间
变体
操作

feupdateenv

来自 cppreference.com
< c‎ | numeric‎ | fenv
定义在头文件 <fenv.h>
int feupdateenv( const fenv_t* envp );
(自 C99 起)

首先,记住当前引发的浮点异常,然后从 envp 指向的对象恢复浮点环境(类似于 fesetenv),然后引发保存的浮点异常。

此函数可用于结束先前对 feholdexcept 的调用建立的非停止模式。

内容

[编辑] 参数

envp - 指向 fenv_t 类型对象的指针,该对象由先前对 feholdexceptfegetenv 的调用设置,或者等于 FE_DFL_ENV

[编辑] 返回值

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

[编辑] 参考文献

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.6.4.4 feupdateenv 函数 (p: 214-215)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.6.4.4 feupdateenv 函数 (p: 195-196)

[编辑] 另请参见

保存环境,清除所有状态标志并忽略所有未来的错误
(函数) [编辑]
保存或恢复当前浮点环境
(函数) [编辑]
默认浮点环境
(宏常量) [编辑]
C++ 文档 for feupdateenv