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