java.lang.Integer.signum()方法实例
java.lang.Integer.signum() 方法返回指定的int值的正负号函数。
声明
以下是java.lang.Integer.signum()方法的声明
public static int signum(int i)
参数
-
i -- 这是int值。
返回值
此方法返回指定的signum 函数的int值。它为-1,如果指定的值是负数,返回0,如果指定的值是零,返回1,如果指定的值是正的。
异常
-
NA
例子
下面的例子显示java.lang.Integer.signum()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { // returns 1 as int value is greater than 1 System.out.println(Integer.signum(50)); // returns -1 as int value is less than 1 System.out.println(Integer.signum(-50)); // returns 0 as int value is equal to 0 System.out.println(Integer.signum(0)); } }
让我们来编译和运行上面的程序,这将产生以下结果:
1 -1 0