Java关于Math类的三个取整方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java关于Math类的三个取整方法相关的知识,希望对你有一定的参考价值。

0x01

  在java的Math类中有三个关于浮点数取整数的方法,分别是ceil (向上取整) floor(向下取整) round(四舍五入) 三个方法

0x02 ceil 向上取整,取整后总是比原来的数字大。

System.out.println(Math.ceil(2.34));
System.out.println(Math.ceil(-2.34));
3.0
-2.0

0x03 floor 向下取整 ,取整后总是比原来的数字小

System.out.println(Math.floor(2.34));
System.out.println(Math.floor(-2.34));
2.0
-3.0

0x04 round 四舍五入,最复杂的就是round,其算法是Math.floor(x+0.5),也就是先对原数据加0.5在向下取整

    System.out.println(Math.round(2.34));
    System.out.println(Math.round(2.65));
    System.out.println(Math.round(-2.5));
    System.out.println(Math.round(-2.49));
2
3
-2
-2

以上是关于Java关于Math类的三个取整方法的主要内容,如果未能解决你的问题,请参考以下文章

4java 中的 Math.round(-1.5) 等于多少?

关于Math常用的方法

JAVA API Math类和Random类

Java学习笔记4.3.1 数学计算 - Math类

Java数学函数的使用

在java中怎么对一个数字取整?