📅  最后修改于: 2020-09-25 07:13:52             🧑  作者: Mango
feholdexcept() 函数在
int feholdexcept( fenv_t* envp );
feholdexcept() 函数可以像fegetenv()一样将当前浮点环境保存到envp
指向的对象,并清除所有浮点状态标志。
最后,它将安装不停止模式,以便将来的浮点异常不会中断执行,直到通过调用feupdateenv或fesetenv恢复浮点环境为止。
#include
#include
#include
#pragma STDC FENV_ACCESS ON
using namespace std;
void print_exceptions()
{
cout << "Raised exceptions: ";
if(fetestexcept(FE_ALL_EXCEPT))
{
if(fetestexcept(FE_DIVBYZERO))
cout << "FE_DIVBYZERO ";
if(fetestexcept(FE_INEXACT))
cout << "FE_INEXACT ";
if(fetestexcept(FE_INVALID))
cout << "FE_INVALID ";
if(fetestexcept(FE_OVERFLOW))
cout << "FE_OVERFLOW ";
if(fetestexcept(FE_UNDERFLOW))
cout << "FE_UNDERFLOW ";
}
else
cout << "None";
cout << endl;
}
int main(void)
{
fenv_t envp;
/* raise certain exceptions */
feraiseexcept(FE_INVALID|FE_DIVBYZERO);
print_exceptions();
/* saves and clears current exceptions */
feholdexcept(&envp);
print_exceptions();
/* restores saved exceptions */
feupdateenv(&envp);
print_exceptions();
return 0;
}
运行该程序时,输出为:
Raised exceptions: FE_DIVBYZERO FE_INVALID
Raised exceptions: None
Raised exceptions: FE_DIVBYZERO FE_INVALID