當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math nextDown()用法及代碼示例


java.lang.Math.nextDown()是Java中的內置數學函數,它返回與負無窮大方向上提供的參數相鄰的浮點值。nextDown()實現的運行速度可能比其等效的nextAfter()調用快。 nextDown()方法已重載,這意味著在Math類下有多個同名方法。nextDown()的兩個重載方法是:

  • 雙精度類型:nextDown(double d)
  • 浮點數類型:nextDown(float f)

注意:

  • 如果參數為NaN,則結果為NaN。
  • 如果參數為零,則結果為-Double.MIN_VALUE。如果我們正在處理double,並且其為浮點型,則結果為-Float.MIN_VALUE。
  • 如果參數為負無窮大,則結果為負無窮大。

用法:


public static dataType nextDown(dataType g)
參數:
 g:an input for starting floating-point value.
返回:
The nextDown() method returns the adjacent floating-point value closer to 
 negative infinity.

例:展示java.lang.Math.nextDown()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.nextDown() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        double g = 23.44; 
  
        // Input double value, Output adjacent floating-point 
        System.out.println(Math.nextDown(g)); 
  
        float gf = 28.1f; 
  
        // Input float value, Output adjacent floating-point 
        System.out.println(Math.nextDown(gf)); 
  
        double a = 0.0 / 0; 
  
        // Input NaN, Output NaN 
        System.out.println(Math.nextDown(a)); 
  
        float b = 0.0f; 
  
        // Input zero, Output - Float.MIN_VALUE for float 
        System.out.println(Math.nextDown(b)); 
  
        double c = -1.0 / 0; 
  
        // Input negative infinity, Output negative infinity 
        System.out.println(Math.nextDown(c)); 
    } 
}

輸出:

23.439999999999998
28.099998
NaN
-1.4E-45
-Infinity


相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java Math nextDown() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。