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