java.lang.StrictMath.nextUp(double d) 方法返回正無窮大的方向靠近d的浮點值。這種方法在語意上等同於 nextAfter(d, Double.POSITIVE_INFINITY)。一個nextUp實現可能會遇到比同等nextAfter呼叫更快。它包括以下情況:
以下是java.lang.StrictMath.nextUp()方法的宣告
public static double nextUp(double d)
d -- 這是開始的浮點值。
此方法返回相鄰更接近正無窮大的浮點值。
NA
下面的例子顯示java.lang.StrictMath.nextUp()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 95.1200000000000 , d2 = 49.32; // returns the floating-point value adjacent to d1 double nextUpValue = StrictMath.nextUp(d1); System.out.println("Next upper value of d1 : " + nextUpValue); // returns the floating-point value adjacent to d2 nextUpValue = StrictMath.nextUp(d2); System.out.println("Next upper value of d2 : " + nextUpValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Next upper value of d1 : 95.12000000000002 Next upper value of d2 : 49.32000000000001