J a v a M a t h 类 \huge{Java \space Math类} Java Math类
Math类
包含执行基本数字运算的方法,Math类没有提供公开的构造器。
M
a
t
h
Math
Math类本质就是一个工具类,提供许多方法用于其他类调用,但是无法创建子类对象。
常用方法
①. abs()取绝对值
System.out.println(Math.abs(10)); // 10
System.out.println(Math.abs(-10.3)); // 10.3
②. ceil() 向上取整
System.out.println(Math.ceil(4.00000001)); // 5.0
System.out.println(Math.ceil(4.0)); // 4.0
③. floor() 向下取整
System.out.println(Math.floor(4.99999999)); // 4.0
System.out.println(Math.floor(4.0)); // 4.0
④. pow() 求指数的次方(前底后指)
System.out.println(Math.pow(2 , 3)); // 2^3 = 8.0
⑤. round() 四舍五入
System.out.println(Math.round(4.49999)); // 4
System.out.println(Math.round(4.500001)); // 5
⑥. 随机数random() (❗区别于Random类)
❗❗❗产生的随机数值包前不包后
System.out.println(Math.random()); // 0.0 - 1.0 (包前不包后)
// 拓展: 3 - 9 之间的随机数 (0 - 6) + 3
// [0 - 6] + 3
//因为Math.random()是包前不包后,所以想要产生[0,6]区间,可以先产生[0,7)
//然后强转int,直接丢掉小数部分,就将区间[0,7)转换为[0,6]了
int data = (int)(Math.random() * 7) + 3;