当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Groovy round()用法及代码示例



方法 round 返回最接近的 long 或 int,由方法返回类型给出。

用法

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

参数

  • d - 双精度或浮点原始数据类型
  • f - 浮点原始数据类型

返回值

此方法返回最接近的long或者int,如方法的返回类型所示,到参数。

示例

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

class Example { 
   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

相关用法


注:本文由纯净天空筛选整理自 Groovy - round()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。