java.lang.StrictMath.abs(float a) 方法返回一個浮點值的絕對值。如果引數不是負數,則返回該引數。如果引數為負數,則返回該引數的負數(負負得正)。它包含了一些情況:
以下是java.lang.StrictMath.abs()方法的宣告
public static float abs(float a)
a -- 這是要確定其絕對值的引數。
該方法返回一個浮點數值的絕對值。
NA
下面的例子顯示java.lang.StrictMath.abs()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { float f1 = 78 , f2 = -9; // returns the absolute value of positive float value float fAbsValue = StrictMath.abs(f1); System.out.println("absolute value of " + f1 + " = " + fAbsValue); // returns the absolute value of negative float value fAbsValue = StrictMath.abs(f2); System.out.println("absolute value of " + f2 + " = " + fAbsValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
absolute value of 78.0 = 78.0 absolute value of -9.0 = 9.0