java.lang.StrictMath.abs(double a)方法實例
java.lang.StrictMath.abs(double a) 方法返回double值的絕對值。如果參數不是負數,則返回該參數。如果參數為負數,則返回該參數正數。它包括了一些情況:
- 如果參數為正零或負0,那麼結果為正零。
- 如果參數為無窮大,那麼結果為正無窮大。
- 如果參數為NaN,那麼結果為NaN。
聲明
以下是java.lang.StrictMath.abs()方法的聲明
public static double abs(double a)
參數
-
a -- 這是來確定其絕對值的參數。
返回值
此方法返回double值的絕對值。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.abs()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 1245.9 , d2 = -987.8; // returns the absolute value of positive double value double dAbsValue = StrictMath.abs(d1); System.out.println("absolute value of " + d1 + " = " + dAbsValue); // returns the absolute value of negative double value dAbsValue = StrictMath.abs(d2); System.out.println("absolute value of " + d2 + " = " + dAbsValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
absolute value of 1245.9 = 1245.9 absolute value of -987.8 = 987.8