Java 常用数学方法

Java  Match.abs()方法 用于获取一个数的绝对值

  • 正数绝对值等于它本身,
  • 负数的绝对值为去掉负号
  • 0的绝对值为0 

语法

它有4种类型的语法,可以传不同类型的参数int double long float,语法如下:
public static int abs(int a)
public static double abs(double a)
public static long abs(long a)
public static float abs(float a) 

参数

4种类型的参数

返回值

根据不同的参数类型返回不同的类型的绝对值。

例子

public class MathAbsExample{
    public static void main(String[] args) {
       int a1 = 1;
       double a2 = -1.23;
       float a3 = -10.12f;

       System.out.println("abs(1)="+Math.abs(a1));
       System.out.println("abs(1.23)="+Math.abs(a2));
       System.out.println("abs(-10.12)="+Math.abs(a3));

    }
}

输出:

abs(1)=1
abs(1.23)=1.23
abs(-10.12)=10.12