Math.round()对负数操作问题System.out.println(Math.round(-11.5));为什么得的是-11而System.out.println(Math.round(-11.51));得的就是-12呢?

问题描述:

Math.round()对负数操作问题
System.out.println(Math.round(-11.5));为什么得的是-11
而System.out.println(Math.round(-11.51));得的就是-12呢?

roundpublic static long round(double a)返回最接近参数的 long.结果将舍入为整数:加上 1/2,对结果调用 floor 并将所得结果强制转换为 long 类型.换句话说,结果等于以下表达式的值:(long)Math.floor(a + 0.5d)特...