数学函数
三角函数方法:
Math 类中三角函数方法:
- Math.toDegrees(Math.PI / 2)返回90.0
- Math.toRadians(30)返回0.5236(PI / 6)
- Math.sin(0)返回0.0
- Math.sin(Math.toRadians(270)返回-1.0
- Math.sin(Math.PI / 6)返回0.5
- Math.sin(Math.PI/2)返回1.0
- Math.cos(0)返回1.0
- Math.cos(Math.PI / 6)返回0.866
- Math.cos(Math.PI / 2)返回0
- Math.asin(0.5)返回0.523598333(PI/ 6)
- Math.acos(0.5)返回1.0472(PI/3)
- Math.atan(1.0)返回0.785398(PI/)
指数函数:
- exp(x);
- log(x);
- log10(x);
- pow(a,b);
- sqrt(x);
取整函数(返回都是双精度):
- 向上取整 ceil(x) Math.ceil(2.1)返回3.0 Math.ceil(-2.1)返回-2.0
- 向下取整 floor(x) Math.floor(2.1)返回2.0 Math.floor(-2.1)返回-3.0
- 取整为它最接近的整数。如果x与两个整数相等,偶数的整数作为返回值
Math.rint(2.1)返回2.0 Math.rint(-2.1)返回-2.0 Math.rint(2.5)返回2.0 Math.rint(2.6)返回3.0 Math.rint(1.5)返回2.0
4. round(x) 如果x是单精度数,返回(int)Math.floor(x+0.5);如果x是双精度数,返回(long)Math.floor(x+0.5)
Math.round(2.6f)返回3 Math.round(2.0)返回2 Math.round(-2.4)返回-2
min、max和abs方法:
- min和max方法用于返回两个数(int、long、float或double型)的最小值和最大值。
- abs方法以返回一个数(int、long、float或double型)的绝对值。
Math.max(2, 3) return 3; Math.min(2.5, 4.6) return 2.5;
Math.max(Math.max(2.5, 4.6), Math.min(3, 5.6)) return 4.6;
Math.abs(-2) return 2;
random方法:
1. a+Math.random() * b 返回a~a+b之间的一个随机数,不包括a+b