當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ fesetexceptflag()用法及代碼示例


C++ 中的fesetexceptflag() 函數將指定的浮點異常標誌從指針對象設置到浮點環境中。

fesetexceptflag() 函數在<cfenv> 頭文件中定義。

fesetexceptflag()原型

int fesetexceptflag( const fexcept_t* flagp, int excepts );

fesetexceptflag() 函數嘗試將由excepts 指定的浮點異常標誌的所有內容從flagp 複製到浮點環境中。

此函數僅修改標誌,不會引發任何異常。

參數:

  • flagp :指向 fexcept_t 對象的指針,將從中讀取標誌。
  • excepts:要設置的異常標誌的位掩碼列表。
位掩碼接受的宏
類型 說明
FE_DIVBYZERO 極差 被零除
FE_INEXACT Inexact 不準確的結果,例如 (1.0/3.0)
FE_INVALID 域錯誤 使用的至少一個參數是未定義函數的值
FE_OVERFLOW 溢出範圍錯誤 結果量級太大,無法用返回類型表示
FE_UNDERFLOW 下溢範圍錯誤 結果量級太小,無法用返回類型表示
FE_ALL_EXCEPT 所有例外 實現支持的所有異常

返回:

  • fesetexceptflag() 函數成功返回零,否則返回非零。

示例:fesetexceptflag() 函數如何工作?

#include <iostream>
#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()
{
	fexcept_t excepts;
	feraiseexcept(FE_DIVBYZERO);
	
	/* save current state*/
	fegetexceptflag(&excepts,FE_ALL_EXCEPT);
	print_exceptions();
	feraiseexcept(FE_INVALID|FE_OVERFLOW);
	print_exceptions();
	
	/* restoring previous exceptions */
	fesetexceptflag(&excepts,FE_ALL_EXCEPT);
	print_exceptions();
	
	return 0;
}

運行程序時,輸出將是:

Raised exceptions: FE_DIVBYZERO
Raised exceptions: FE_DIVBYZERO FE_INVALID FE_OVERFLOW
Raised exceptions: FE_DIVBYZERO

相關用法


注:本文由純淨天空篩選整理自 C++ fesetexceptflag()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。