Java round() 方法

round() 方法返回一个最接近的 int、long 型值,四舍五入。

round 表示"四舍五入",算法为Math.floor(x+0.5) ,即将原来的数字加上 0.5 后再向下取整,所以 Math.round(11.5) 的结果为 12,Math.round(-11.5) 的结果为 -11。

语法

该方法有以下几种语法格式:

  1. long round(double d)
  2. int round(float f)

参数

  • d — double 或 float 的原生数据类型

  • f — float 原生数据类型

返回值

返回一个最接近的int、long型值,方法会指定返回的数据类型。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. double d = 100.675;
  4. double e = 100.500;
  5. float f = 100;
  6. float g = 90f;
  7. System.out.println(Math.round(d));
  8. System.out.println(Math.round(e));
  9. System.out.println(Math.round(f));
  10. System.out.println(Math.round(g));
  11. }
  12. }

编译以上程序,输出结果为:

  1. 101
  2. 101
  3. 100
  4. 90