位置:首页 > Java技术 > Java基础教程 > Java round()方法

Java round()方法

描述:

该方法返回最接近或int/long整型,返回给定方法的参数类型。.

语法

这种方法有以下变种:

long round(double d)
int round(float f)

参数

下面是参数的详细信息:

  • d --  double 或 float 原始数据类型

  • f -- float 原始数据类型

返回值

  • 此方法返回最接近的 long或者int,通过该方法的返回该参数类型所指出的一致。

例子:

public class Test{ 

   public static void main(String args[]){
      double d = 100.675;
      double e = 100.500;
      float f = 100;
      float g = 90f;

      System.out.println(Math.round(d));
      System.out.println(Math.round(e)); 
      System.out.println(Math.round(f)); 
      System.out.println(Math.round(g)); 
   }
}

这将产生以下结果:

101
101
100
90