Java StrictMath signum()方法
java.lang.StrictMath.signum(float f) 方法返回参数的正负号函数,如果参数为0返回即零,如果参数大于零返回1.0f,如果参数小于零返回-1.0。它包括以下情况:
- 如果第一个参数为NaN,则返回NaN。
- 如果参数为正零或负零,那么结果与参数一样。
1 语法
public static float signum(float f)
2 参数
f :这是浮点值的正负号将被返回。
3 返回值
这个方法返回参数的符号函数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath signum()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
float f1 = 102.20f, f2 = 0.0f, f3 = -0.0f;
// returns 1.0 if the argument is greater than zero
float retval = StrictMath.signum(f1);
System.out.println("Value = " + retval);
/* if the argument is positive zero, then the result is the
same as the argument */
retval = StrictMath.signum(f2);
System.out.println("Value = " + retval);
/* if the argument is negative zero, then the result is the
same as the argument */
retval = StrictMath.signum(f3);
System.out.println("Value = " + retval);
}
}
输出结果为:
Value = 1.0
Value = 0.0
Value = -0.0
热门文章
优秀文章