[java] Math.round()
Math.round(-11.6) ---->> -12 Math.round(-11.5) ---->> -11
Math.round(11.5) ----->> 12 Math.round(11.4) ------>> 11
Math.round(double val)方法返回最接近的long类型值
val为负数时,如果小数点后数字小于等于5,则舍去;大于5,则向后进一位(整数部分-1)
val为正数时,如果小数点后数字小于5,则舍去;大于等于5,则进一位(整数部分+1)。
[转载自:http://sclinshui.blog.163.com/blog/static/107706422009920104344622/]