当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ fetestexcept()用法及代码示例


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++ fetestexcept()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。