Java Math.abs() 方法
Java Math.abs() 方法返回参数的绝对值
参数可以是 int, float, long, double, short, byte 类型
语法
double abs(double d) float abs(float f) int abs(int i) long abs(long lng)
参数
任何原生数据类型
返回值
返回参数的绝对值
范例
下面的范例使用 Math.abs() 方法返回一个数的绝对值
public class Test{ 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)); } }
编译运行以上 Java 代码,输出结果如下
8 100.0 90.0