函数
<cmath> <ctgmath>

nextafter

     double nextafter  (double x     , double y);      float nextafterf (float x      , float y);long double nextafterl (long double x, long double y);
     double nextafter (double x     , double y );      float nextafter (float x      , float y );long double nextafter (long double x, long double y );     double nextafter (Type1 x      , Type2 y);        // additional overloads
下一个可表示值
返回在y方向上紧随x的下一个可表示值。

类似函数 nexttoward 具有相同的行为,但它的第二个参数类型为 long double

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件 (<cmath>) 中为其他算术类型Type1Type2)的组合提供了额外的重载:这些重载在计算前会有效地将其参数转换为 double,除非至少有一个参数的类型是 long double(在这种情况下,两个参数都会被转换为 long double)。

参数

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
/* nextafter example */
#include <stdio.h>      /* printf */
#include <math.h>       /* nextafter */

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

可能的输出

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


另见