一、基本常用的Math类方法
Math.abs() - 返回参数的绝对值。
参数可以是 int, float, long, double, short, byte类型
1 public static void main(String args[]){ 2 Integer a = -8; 3 double d = -100; 4 float f = -90; 5 6 System.out.println(Math.abs(a)); //8 7 System.out.println(Math.abs(d)); //100.0 8 System.out.println(Math.abs(f)); //90.0 9 }
文章参考:http://www.51gjie.com/java/185.html & 菜鸟教程