当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math abs()用法及代码示例


在本教程中,我们将借助示例了解 Java Math.abs() 方法。

abs() 方法返回指定值的绝对值。

示例

class Main {
  public static void main(String[] args) {

    // print the absolute value
    System.out.println(Math.abs(-7.89));

  }
}

数学语法。abs()

用法:

Math.abs(num)

在这里,abs() 是一个静态方法。因此,我们使用类名 Math 访问该方法。

参数:

abs() 方法采用单个参数。

  • num- 要返回其绝对值的数字。号码可以是:
    • int
    • double
    • float
    • long

返回:

  • 返回指定数字的绝对值
  • 如果指定的数字是负数,则返回正值

示例 1:带有正数的 Java 数学 abs()

class Main {
  public static void main(String[] args) {

    // create variables
    int a = 7;
    long b = -23333343;
    double c = 9.6777777;
    float d = -9.9f;

    // print the absolute value
    System.out.println(Math.abs(a));  // 7
    System.out.println(Math.abs(c));  // 9.6777777


    // print the value without negative sign
    System.out.println(Math.abs(b));  // 23333343
    System.out.println(Math.abs(d));  // 9.9
  }
}

在上面的例子中,我们已经导入了java.lang.Math 包。如果我们想使用Math 类的方法,这一点很重要。注意表达式,

Math.abs(a)

在这里,我们直接使用了类名来调用方法。这是因为abs() 是一个静态方法。

示例 2:带有负数的 Java 数学 abs()

class Main {
  public static void main(String[] args) {

    // create variables
    int a = -35;
    long b = -141224423L;
    double c = -9.6777777d;
    float d = -7.7f;

    // get the absolute value
    System.out.println(Math.abs(a));  // 35
    System.out.println(Math.abs(b));  // 141224423
    System.out.println(Math.abs(c));  // 9.6777777
    System.out.println(Math.abs(d));  // 7.7
  }
}

在这里,我们可以看到abs()方法将负值转换为正值。

相关用法


注:本文由纯净天空筛选整理自 Java Math abs()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。