Java Integer signum()方法

java.lang.Integer.signum() 方法返回指定的int值的正负号函数。

1 语法

public static int signum(int i)

2 参数

i :这是int值。

3 返回值

此方法返回指定的signum 函数的int值。它为-1,如果指定的值是负数,返回0,如果指定的值是零,返回1,如果指定的值是正的。

4 示例 

package com.yiidian;

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

 

热门文章

优秀文章