java.lang.Math.abs(double a) 返回double值的絕對值。如果引數不是負數,則返回該引數。如果引數為負數,則返回該引數的負數。特殊情況:
以下是java.lang.Math.abs()方法的宣告
public static double abs(double a)
a -- 要確定其絕對值的引數
此方法返回引數的絕對值。
NA
下面的例子顯示了lang.Math.abs()方法的使用。
package com.yiibai; import java.lang.Math; public class MathDemo { public static void main(String[] args) { // get some doubles to find their absolute values double x = 4876.1874d; double y = -0.0d; // 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(-9999.555d)=" + Math.abs(-9999.555d)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.abs(4876.1874d)=4876.1874 Math.abs(-0.0d)=0.0 Math.abs(-9999.555d)=9999.555