feholdexcept
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <<fenv.h>> 中定义
|
||
int feholdexcept( fenv_t* envp ); |
||
首先,当前浮点环境保存指向的对象的
envp
(fegetenv),然后清除所有的浮点状态标志,并然后安装非停止模式:未来的浮点异常不会中断执行(不会捕获),直到恢复浮点环境feupdateenv或fesetenv.原文:
First, saves the current floating-point environment to the object pointed to by
envp
(similar to fegetenv), then clears all floating-point status flags, and then installs the non-stop mode: future floating-point exceptions will not interrupt execution (will not trap), until the floating-point environment is restored by feupdateenv or fesetenv.此功能可用于在开始的一个子程序,它必须隐藏的浮点异常,它可能会提高从调用者。如果只有一些例外情况必须被抑制,而其他人必须报告,非停止模式通常是调用feupdateenv结束之后清除不必要的例外.
原文:
This function may be used in the beginning of a subroutine that must hide the floating-point exceptions it may raise from the caller. If only some exceptions must be suppressed, while others must be reported, the non-stop mode is usually ended with a call to feupdateenv after clearing the unwanted exceptions.
目录 |
[编辑] 参数
envp | - | 指针指向将被存储的对象类型fenv_t浮点环境
原文: pointer to the object of type fenv_t where the floating-point environment will be stored |
[编辑] 返回值
0成功,否则返回非零值.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
浮点环境恢复和提高了先前抛出异常 原文: restores the floating-point environment and raises the previously raise exceptions (函数) |
(C99) |
保存或恢复当前浮点环境 原文: saves or restores the current floating point environment (函数) |
(C99) |
默认的浮点环境 (常量宏) |
C++ documentation for feholdexcept
|