Java abs() 方法

abs() 返回参数的绝对值。参数可以是 int, float, long, double, short, byte类型。

语法

各个类型的方法格式类似如下:

  1. double abs(double d)
  2. float abs(float f)
  3. int abs(int i)
  4. long abs(long lng)

参数

  • 任何原生数据类型。

返回值

返回参数的绝对值。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. Integer a = -8;
  4. double d = -100;
  5. float f = -90;
  6. System.out.println(Math.abs(a));
  7. System.out.println(Math.abs(d));
  8. System.out.println(Math.abs(f));
  9. }
  10. }

编译以上程序,输出结果为:

  1. 8
  2. 100.0
  3. 90.0