feupdatedenv
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <<fenv.h>> 中定义
|
||
int feupdateenv( const fenv_t* envp ); |
||
首先,记住目前提出的浮点异常,然后恢复浮点环境的对象所指向的
envp
(fesetenv类似),然后引发浮点异常,保存.原文:
First, remembers the currently raised floating-point exceptions, then restores the floating-point environment from the object pointed to by
envp
(similar to fesetenv), then raises the floating-point exceptions that were saved.此功能可用于结束的非停止模式建立的先前调用feholdexcept.
原文:
This function may be used to end the non-stop mode established by an earlier call to feholdexcept.
目录 |
[编辑] 参数
envp | - | 指针类型的对象fenv_t以前调用feholdexcept或
fegetenv 或等于FE_DFL_ENV原文: pointer to the object of type fenv_t set by an earlier call to feholdexcept or fegetenv or equal to FE_DFL_ENV |
[编辑] 返回值
0成功,否则返回非零值.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
保存环境,清除所有状态标志,而忽略了未来所有的错误 原文: saves the environment, clears all status flags and ignores all future errors (函数) |
(C99) |
保存或恢复当前浮点环境 原文: saves or restores the current floating point environment (函数) |
(C99) |
默认的浮点环境 (常量宏) |
C++ documentation for feupdateenv
|