位置:首頁 > Java技術 > java.lang > java.lang.Math.abs(int a)方法實例

java.lang.Math.abs(int a)方法實例

java.lang.Math.abs(int a) 返回一個int值的絕對值。如果參數不是負數,則返回該參數。如果參數為負數,則返回該參數的正數。請注意,如果該參數等於Integer.MIN_VALUE,表示的最小負整數值,其結果是相同的值,且為負。

聲明

以下是java.lang.Math.abs()方法的聲明

public static int abs(int a)

參數

  • a -- 要確定其絕對值的參數

返回值

此方法返回參數的絕對值。

異常

  • NA

例子

下麵的例子顯示了lang.Math.abs()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get some integers to find their absolute values
      int x = 175;
      int y = -184;

      // get and print their absolute values
      System.out.println("Math.abs(" + x + ")=" + Math.abs(x));
      System.out.println("Math.abs(" + y + ")=" + Math.abs(y));
      System.out.println("Math.abs(-0)=" + Math.abs(-0));
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Math.abs(175)=175
Math.abs(-184)=184
Math.abs(-0)=0