扫码一下
查看教程更方便
abs() 方法给出参数的绝对值。 参数可以是 int、float、long、double、short、byte。
double abs(double d)
float abs(float f)
int abs(int i)
long abs(long lng)
任何原始数据类型。
此方法返回参数的绝对值。
public class Main { public static void main(String args[]) { Integer a = -8; double d = -100; float f = -90; System.out.println(Math.abs(a)); System.out.println(Math.abs(d)); System.out.println(Math.abs(f)); } }
上面示例编译运行结果如下
8
100.0
90.0