Java - Math abs(long) 方法



描述

Java Math abs(long a) 方法返回 long 值的绝对值。如果参数是非负数,则返回该参数。如果参数为负数,则返回该参数的相反数。请注意,如果参数等于 Long.MIN_VALUE(最小的可表示 long 值),则结果为该值本身,即负数。

声明

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

public static long abs(long a)

参数

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

返回值

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

异常

获取正 long 值的绝对值示例

以下示例演示了如何使用 Math abs() 方法获取正 long 值的绝对值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a long to find its absolute values
      long x = 4876L;
   
      // get and print its absolute value
      System.out.println("Math.abs(" + x + ")=" + Math.abs(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.abs(4876)=4876

获取零 long 值的绝对值示例

以下示例演示了如何使用 Math abs() 方法获取零 long 值的绝对值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a long to find its absolute values
      long x = -0L;
   
      // get and print its absolute value
      System.out.println("Math.abs(" + x + ")=" + Math.abs(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.abs(0)=0

获取负 long 值的绝对值示例

以下示例演示了如何使用 Math abs() 方法获取负 long 值的绝对值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a long to find its absolute values
      long x = -9999L;
   
      // get and print its absolute value
      System.out.println("Math.abs(" + x + ")=" + Math.abs(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Math.abs(-9999)=9999
java_lang_math.htm
广告