1.Math类:该类是数学类, 主要是提供了很多的数学公式。
2.Math类常用的方法:
(1) abs(double a):该方法用于获取绝对值;
(2) ceil(double a):该方法用于向上取整;
(3) floor(double a):该方法用于向下取整;
(4) round(float a):该方法用于四舍五入;
(5) random():该方法用于产生一个随机数,大于等于 0.0 且小于 1.0 的伪随机 double 值。
3.实例:
public class Demo4 {
public static void main(String[] args) {
System.out.println("绝对值:"+Math.abs(-3));
System.out.println("向上取整:"+Math.ceil(3.14));
System.out.println("向下取整:"+Math.floor(-3.14));
System.out.println("四舍五入:"+Math.round(3.54));
System.out.println("随机数:"+Math.random());
}
}
运行结果如下图所示: