大家好,又见面了,我是你们的朋友全栈君。
Java中对数字进行四舍五入或取整处理经常使用Math
库中的三个方法:
ceil
floor
round
ceil英文释义:天花板。天花板在上面,所以是向上取整,好记了。
Math.ceil
函数接收一个double
类型的参数,用于对数字进行向上取整(遇小数进1),即返回一个大于或等于传入参数的最小整数(但还是以double类型返回)。
floor英文释义:地板。地板在下面,所以是向下取整,好记了。
Math.floor
函数接收一个double
类型的参数,用于对数字进行向下取整(遇小数忽略),即返回一个小于或等于传入参数的最大整数(但还是以double类型返回)。
round英文释义:附近。一个小数附近的整数,想象一下参数在数轴上的位置,是离哪头的整数近就取哪头的整数,那就是四舍五入,好记了。
Math.round
函数接收一个float
或double
类型的参数,用于对数字进行四舍五入,即返回一个离传入参数最近的整数(如果传入参数是float
返回int
类型结果,如果传入参数是double
返回long类型结果)。
以上三个方法,举例如下:
public class Number {
public static void main(String[] args){
System.out.println("1.0 ceil:"+Math.ceil(1.0));
System.out.println("1.1 ceil:"+Math.ceil(1.1));
System.out.println("1.6 ceil:"+Math.ceil(1.6));
System.out.println("1.4 floor:"+Math.floor(1.4));
System.out.println("1.6 floor:"+Math.floor(1.6));
System.out.println("1.1 round:"+Math.round(1.1f));
System.out.println("1.6 round:"+Math.round(1.6d));
}
}
运行结果:
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/156742.html原文链接:https://javaforall.cn