Java.lang.Math.abs() 方法

描述

java.lang.Math.abs(double a) 返回双精度值的绝对值。 如果参数不是负数,则返回参数。 如果参数是否定的,则返回参数的否定。特殊情况 −

  • 如果参数为正零或负零,则结果为正零。
  • 如果参数为无穷大,则结果为正无穷大。
  • 如果参数为 NaN,则结果为 NaN。

声明

以下是 java.lang.Math.abs() 方法的声明。

public static double abs(double a)

参数

a − 要确定其绝对值的参数


返回值

此方法返回参数的绝对值。


异常

NA


示例

下面的例子展示了 lang.Math.abs() 方法的使用。

package com.tutorialspoint;

import java.lang.Math;

public class MathDemo {

   public static void main(String[] args) {

      // get some doubles to find their absolute values
      double x = 4876.1874d;
      double y = -0.0d;
   
      // get and print their absolute values
      System.out.println("Math.abs(" + x + ")=" + Math.abs(x));
      System.out.println("Math.abs(" + y + ")=" + Math.abs(y));
      System.out.println("Math.abs(-9999.555d)=" + Math.abs(-9999.555d));
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Math.abs(4876.1874d)=4876.1874
Math.abs(-0.0d)=0.0
Math.abs(-9999.555d)=9999.555