java 中的 Math.round(-1.5) 等于多少?
答:-1。
Math.round()四舍五入的原理是在参数上加0.5然后做向下取整。
Math.floor() 返回小于或等于一个给定数字的最大整数。
示例:
Math.floor( 45.95);
// 45
Math.floor( 45.05);
// 45
Math.floor( 4 );
// 4
Math.floor(-45.05);
// -46
Math.floor(-45.95);
// -46(最大整数-45,取小于-46)