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


java.lang.StrictMath.abs(long a) 方法返回一個long值的絕對值。如果該引數不為負數,則返回該引數。如果引數為負數,則返回該引數的取反。

宣告

以下是java.lang.StrictMath.abs()方法的宣告

public static long abs(long a)

引數

  • a -- 這是要來確定其絕對值的引數。

返回值

此方法返回的long值的絕對值。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.abs()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    long l1 = 55475693, l2 = -7538911;

    // returns the absolute value of positive long value
    long lAbsValue = StrictMath.abs(l1);
    System.out.println("absolute value of " + l1 + " = " + lAbsValue);    

    // returns the absolute value of negative long value
    lAbsValue = StrictMath.abs(l2);
    System.out.println("absolute value of " + l2 + " = " + lAbsValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

absolute value of 55475693 = 55475693
absolute value of -7538911 = 7538911