Groovy - rint()


rint 方法返回值最接近参数的整数。

句法

double rint(double d)

参数

d - 它接受双精度值作为参数。

返回值

此方法返回值最接近参数的整数。作为双倍返回。

例子

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args){ 
      double d = 100.675; 
      double e = 100.500; 
      double f = 100.200;
		
      System.out.println(Math.rint(d)); 
      System.out.println(Math.rint(e)); 
      System.out.println(Math.rint(f)); 
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

101.0 
100.0 
100.0
groovy_numbers.htm