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