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