Java - StrictMath abs(long) 方法



描述

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

声明

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

public static long abs(long a)

参数

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

返回值

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

异常

获取正 long 值的绝对值示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   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("StrictMath.abs(" + x + ")=" + StrictMath.abs(x));
   }
}

输出

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

StrictMath.abs(4876)=4876

获取零 long 值的绝对值示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   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("StrictMath.abs(" + x + ")=" + StrictMath.abs(x));
   }
}

输出

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

StrictMath.abs(0)=0

获取负 long 值的绝对值示例

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

package com.tutorialspoint;

public class StrictMathDemo {

   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("StrictMath.abs(" + x + ")=" + StrictMath.abs(x));
   }
}

输出

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

StrictMath.abs(-9999)=9999
java_lang_strictmath.htm
广告