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