位置:首頁 > Java技術 > java.lang > java.lang.StrictMath.signum(double d)方法實例

java.lang.StrictMath.signum(double d)方法實例

 java.lang.StrictMath.signum(double d) 方法返回參數的符號函數,如果參數為0返回零,如果參數大於零返回1.0,如果參數小於零返回-1.0。它包括以下情況:

  • 如果第一個參數為NaN,則返回NaN。
  • 如果參數為正零或負零,那麼結果與參數一樣。

聲明

以下是java.lang.StrictMath.signum()方法的聲明

public static double signum(double d)

參數

  • d -- 這是浮點值的正負號將被返回。

返回值

這個方法返回參數的符號函數。

異常

  • NA

例子

下麵的例子顯示java.lang.StrictMath.signum()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 102.20d, d2 = 0.0d, d3 = -0.0d;

    // returns 1.0 if the argument is greater than zero
    double retval = StrictMath.signum(d1);
    System.out.println("Value = " + retval);

    /* if the argument is positive zero, then the result is the
    same as the argument */
    retval = StrictMath.signum(d2);
    System.out.println("Value = " + retval);
    
    /* if the argument is negative zero, then the result is the 
    same as the argument */
    retval = StrictMath.signum(d3);
    System.out.println("Value = " + retval);
  }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Value = 1.0
Value = 0.0
Value = -0.0