java常用类及其方法-Math类

 1、Math.abs()求绝对值

Math.abs(-1)

2、Math.ceil/Math.floor向上取整,向下取整 向上取整,无论是正数还是负数,都取最大的值 向下取整,无论是正数还是负数,都取最小的值

Math.ceil(1.2)
2
Math.ceil(-1.6)
-1

Math.floor(1.8)
1
Math.floor(-1.1)
-2

3、Math.round()四舍五入

正数的话,还是正常的,之前理解的,但是如果是负数,临界点必须大于5

Math.round(1.5)
2
Math.round(-1.5)
-1
Math.round(-1.51)
-2

4、Math.sqrt()开平方

Math.sqrt(9)
3

5、Math.pow(n,m)取幂 n的m次幂

Math.pow(3,2)   ==> 9

6、Math.PI

Math.PI  ===>3.141592653589793

7、Math.max/Math.min 获取最大值和最小值

Math.max(1,2,3)
Math.min(4,5,6)

8、Math.random()获取0~1之间的随机数(大于等于0小于1) 获取n到m之间的随机数:Math.random()*(m-n)+n;

//获取10到20之间的随机输

Math.random()*10+10

a.Math.random是取[0,1]的数;

b.取[min,max]的随机整数时使用如下公式:

Math.floor(Math.random().(max-min+1)+min)

c取[min,max]的随机整数时使用以下公式

Math.floor(Math.random().(max-min)+min)

d取[min,max]的随机整数时使用如下公式

Math.floor(Math.random().(max-min)+min+1)

如果传的实参中包含字符串,就变成数字,如果是非有效数字,就直接略过

function fn(){
   var total=null;
   for(var i=0;i

你可能感兴趣的:(学习,学习,java,开发语言)