赞
踩
//丢弃小数部分,保留整数部分
parseInt(85.5)//85
//向上取整,有余数或者小数,整数位+1
Math.ceil(7/3) //3
Math.ceil(85.6) //86
Math.ceil(72.1) //73
//向下取整,有余数或者小数,直接舍弃小数部分
Math.floor(7/3) //2
Math.floor(10.26) //10
Math.floor(95.99) //95
//四舍五入
Math.round(20/3)//7
Math.round(13/3)//4
Math.round(5.6)//6
Math.round(9.2)//9
7%3 //1
25%6 //1
注意 :parseInt()方法在 Ts中使用时 会出现一些问题。
Dome试例
a: number = 10.58
b: number = parseInt(this.a)
c: number = 95.64
d: number = Math.floor(this.c)
编译器报错提示:
因为 Ts中标注了数据类型,通过parseInt()方法提示,大概可以推理出,parseInt()接受的参数 类型是一个字符串,然后截取到字符串数字 整数部分数据并抛出返回。
对比Math.floor()方法就不存在这个问题。
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。