Java StrictMath signum()方法

java.lang.StrictMath.signum(double d) 方法返回参数的符号函数,如果参数为0返回零,如果参数大于零返回1.0,如果参数小于零返回-1.0。它包括以下情况:

  • 如果第一个参数为NaN,则返回NaN。
  • 如果参数为正零或负零,那么结果与参数一样。

1 语法

public static double signum(double d)

2 参数

d : 这是浮点值的正负号将被返回。

3 返回值

这个方法返回参数的符号函数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath signum()方法
 */
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

 

热门文章

优秀文章