feclearexcept
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <<fenv.h>> 中定义
|
||
int feclearexcept( int excepts ); |
||
尝试清除浮点异常中列出的位掩码参数
excepts
,这是一个按位或浮点例外宏的.原文:
Attempts to clear the floating-point exceptions that are listed in the bitmask argument
excepts
, which is a bitwise OR of the 浮点例外宏.目录 |
[编辑] 参数
excepts | - | 位掩码列出的异常标志清除
原文: bitmask listing the exception flags to clear |
[编辑] 返回值
0如果成功清除了所有指出的异常,或者如果
excepts
是零。在发生错误时,返回一个非零值.原文:
0 if all indicated exceptions were successfully cleared or if
excepts
is zero. Returns a non-zero value on error.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
确定哪些指定浮点状态标志被设置 原文: determines which of the specified floating-point status flags are set (函数) |
C++ documentation for feclearexcept
|