fegetround, fesetround
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <<fenv.h>> 中定义
|
||
int fesetround( int round ); |
(1) | |
int fegetround(); |
(2) | (C++11 起) |
尝试建立平等的浮点舍入方向的论据
2) round
,这是预期的浮点四舍五入宏是一个. 原文:
Attempts to establish the floating-point rounding direction equal to the argument argument
round
, which is expected to be one of the 浮点四舍五入宏. 返回值对应于当前的舍入方向的浮点四舍五入宏.
原文:
Returns the value of the 浮点四舍五入宏 that corresponds to the current rounding direction.
目录 |
[编辑] 参数
round | - | 舍入的方向,浮点四舍五入宏之一
|
[编辑] 返回值
1)0成功,否则返回非零值.
2) 浮点四舍五入宏描述当前的舍入方向或负值,如果不能确定的方向
原文:
the 浮点四舍五入宏 describing the current rounding direction or a negative value if the direction cannot be determined
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
最接近的整数,使用当前的舍入模式 原文: nearest integer using current rounding mode (函数) |
(C99) (C99) (C99) |
最接近的整数 的结果是不同的异常,如果使用当前的舍入模式 原文: nearest integer using current rounding mode with exception if the result differs (函数) |
C++ documentation for fegetround, fesetround
|