C++ 中的fetestexcept() 函数确定当前设置了哪个指定的浮点异常子集。
fetestexcept() 函数在<cfenv> 头文件中定义。
fetestexcept()原型
int fetestexcept( int excepts );
fetestexcept()函数测试当前是否设置了excepts指定的浮点异常。参数excepts
是浮点异常宏的按位或。
参数:
excepts
:位掩码列出要测试的异常标志。
返回:
- 浮点异常宏的按位或运算,它们都包含在异常中并且对应于当前设置的浮点异常。
示例:fetestexcept() 函数如何工作?
#include <iostream>
#include <cmath>
#include <cfenv>
#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)
{
print_exceptions();
feraiseexcept(FE_INVALID|FE_DIVBYZERO);
print_exceptions();
feclearexcept(FE_ALL_EXCEPT);
print_exceptions();
return 0;
}
运行程序时,输出将是:
Raised exceptions: None Raised exceptions: FE_DIVBYZERO FE_INVALID Raised exceptions: None
相关用法
- C++ feupdateenv()用法及代码示例
- C++ feof() function用法及代码示例
- C++ fesetround()用法及代码示例
- C++ fegetexceptflag()用法及代码示例
- C++ fesetenv()用法及代码示例
- C++ feraiseexcept()用法及代码示例
- C++ fegetenv()用法及代码示例
- C++ feclearexcept()用法及代码示例
- C++ fesetexceptflag()用法及代码示例
- C++ feholdexcept()用法及代码示例
- C++ ferror()用法及代码示例
- C++ fegetround()用法及代码示例
- C++ fcvt()用法及代码示例
- C++ fwscanf()用法及代码示例
- C++ fmax()用法及代码示例
- C++ fdim()用法及代码示例
- C++ fmin()用法及代码示例
- C++ forward_list::unique()用法及代码示例
- C++ forward_list::emplace_front()用法及代码示例
- C++ fopen()用法及代码示例
注:本文由纯净天空筛选整理自 C++ fetestexcept()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。