java.lang.StrictMath.abs(float a)方法範例


java.lang.StrictMath.abs(float a) 方法返回一個浮點值的絕對值。如果引數不是負數,則返回該引數。如果引數為負數,則返回該引數的負數(負負得正)。它包含了一些情況:

  • 如果引數為正零或負0,那麼結果為正零。
  • 如果引數為無窮大,那麼結果為正無窮大。
  • 如果引數為NaN,那麼結果為NaN。

宣告

以下是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