函数
<cmath> <ctgmath>

nexttoward

     double nexttoward  (double x     , long double y);      float nexttowardf (float x      , long double y);long double nexttowardl (long double x, long double y);
     double nexttoward (double x     , long double y);      float nexttoward (float x      , long double y);long double nexttoward (long double x, long double y);     double nexttoward (T x          , long double y);  // additional overloads
朝向精确值的下一个可表示值
返回在 y 方向上紧随 x 的下一个可表示值。

此函数的行为与 nextafter 类似,但 y 可能更精确。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件 (<cmath>) 中为整数类型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(定义为 T 是任何整数类型)。

参数

x
基准值。
y
返回值所逼近的值。
如果两个参数比较相等,则函数返回 y(已转换为返回类型)。

返回值

y 方向上紧随 x 的下一个可表示值。

如果 x 是该类型可表示的最大有限值,并且结果是无限或不可表示的,则会发生溢出范围错误

如果发生上溢范围错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_OVERFLOW

示例

1
2
3
4
5
6
7
8
9
10
/* nexttoward example */
#include <stdio.h>      /* printf */
#include <math.h>       /* nexttoward */

int main ()
{
  printf ("first representable value greater than zero: %e\n", nexttoward(0.0,1.0L));
  printf ("first representable value less than zero: %e\n", nexttoward(0.0,-1.0L));
  return 0;
}

可能的输出

first representable value greater than zero: 4.940656e-324
first representable value less than zero: -4.940656e-324


另见