Java如何获取数字的绝对值?

下面的示例向您展示如何获取数字的绝对值。 要获取数字的绝对值或绝对值,我们使用Math.abs()方法调用。  Math.abs()方法是重载的,可以接受double,float,int或long类型的值。

package org.nhooo.example.math;

public class GetAbsoluteValueExample {
    public static void main(String[] args) {
        Double value = -10.0D;

        double abs1 = Math.abs(value);
        System.out.println("Absolute value in double: " + abs1);

        float abs2 = Math.abs(value.floatValue());
        System.out.println("Absolute value in float : " + abs2);

        int abs3 = Math.abs(value.intValue());
        System.out.println("Absolute value in int   : " + abs3);

        long abs4 = Math.abs(value.longValue());
        System.out.println("Absolute value in long  : " + abs4);
    }
}

上面的代码段显示以下结果:

Absolute value in double: 10.0
Absolute value in float : 10.0
Absolute value in int   : 10
Absolute value in long  : 10