PHP
·
发表于 5年以前
·
阅读量:8254
//双位运算符比Math.floor(),Math.ceil()速度快
~~7.5 // 7
Math.ceil(7.5) // 8
Math.floor(7.5) // 7
~~-7.5 // -7
Math.floor(-7.5) // -8
Math.ceil(-7.5) // -7
//负数时,双位运算符和Math.ceil结果一致,正数时和Math.floor结果一致