fetestexcept
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <<fenv.h>> 中定义
|
||
int fetestexcept( int excepts ); |
||
确定当前设置的指定的子集的浮点异常。参数
excepts
是一个位的浮点例外宏.原文:
Determines which of the specified subset of the floating point exceptions are currently set. The argument
excepts
is a bitwise OR of the 浮点例外宏.目录 |
[编辑] 参数
excepts | - | 位掩码列出的异常标志进行测试
原文: bitmask listing the exception flags to test |
[编辑] 返回值
位或浮点异常的宏都包含在
excepts
,对应当前设置的浮点异常.原文:
Bitwise OR of the floating-point exception macros that are both included in
excepts
and correspond to floating-point exceptions currently set.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
清除指定的浮点状态标志 原文: clears the specified floating-point status flags (函数) |
C++ documentation for fetestexcept
|