本文仅记录作者目前学习觉得常用的方法,想了解得更详尽,可以参考Java官方API文档。
有错误欢迎指正。
java.lang.Math
Math类库用于基本数字运算,例如基本指数,对数,平方根和三角函数,取整等
取整
long round(double a)
四舍五入取整
注:负数情况,有小数位0.5例如-0.5、-1.5、-2.5时,0.5会被舍去:0、-1、-2
举例:
class Main1 {
public static void main(String[] args) {
System.out.println(Math.round(-1.6));
System.out.println(Math.round(-1.5));
System.out.println(Math.round(-1.4));
System.out.println(Math.round(1.4));
System.out.println(Math.round(1.5))