Java abs() 方法

2019-10-16 22:22:53

該方法給出了引數的絕對值。 引數的型別可以是:intfloatlongdoubleshortbyte

語法

以下是此方法的所有變體 -

double abs(double d)
float abs(float f)
int abs(int i)
long abs(long lng)

引數

  • 任何原始資料型別。

返回值

  • 此方法返回引數的絕對值。

範例

public class Test { 

   public static void main(String args[]) {
      Integer a = -8;
      double d = -100;
      float f = -90;

      System.out.println(Math.abs(a));
      System.out.println(Math.abs(d));     
      System.out.println(Math.abs(f));    
   }
}

執行上面範例程式碼,得到以下結果:

8
100.0
90.0