java.lang.StrictMath.nextAfter(double start, double direction) 方法返回第二個引數的方向上相鄰的第一個引數的浮點數。如果兩個引數比較相等,第二個引數被返回。它包括以下情況:
以下是java.lang.StrictMath.nextAfter()方法的宣告
public static double nextAfter(double start, double direction)
start -- 這是開始的浮點值
direction -- 這個值表示其開始的相鄰或開始將被返回
此方法返回開始沿方向上相鄰的浮點數。
NA
下面的例子顯示java.lang.StrictMath.nextAfter()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 102.2d, d2 = 0.0d; /* returns the floating-point number adjacent to the first argument in the direction of the second argument */ double retval = StrictMath.nextAfter(d1, 9.2d); System.out.println("NextAfter = " + retval); /* returns the floating-point number adjacent to the first argument in the direction of the second argument */ retval = StrictMath.nextAfter(d2, 9.2d); System.out.println("NextAfter = " + retval); // returns 0 if both arguments is zero retval = StrictMath.nextAfter(d2, 0.0d); System.out.println("NextAfter = " + retval); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
NextAfter = 102.19999999999999 NextAfter = 4.9E-324 NextAfter = 0.0