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


Java Java.lang.StrictMath.round()用法及代码示例



描述

这个java.lang.StrictMath.round(float a) 方法返回最接近参数的 int。通过加 1/2,取结果的下限,并将结果转换为 int 类型,结果四舍五入为整数。它包括这些情况 -

  • 如果参数为 NaN,则结果为 0。
  • 如果参数为负无穷大或任何小于或等于 Integer.MIN_VALUE 的值,则结果等于 Integer.MIN_VALUE 的值。
  • 如果参数为正无穷大或任何大于或等于 Integer.MAX_VALUE 的值,则结果等于 Integer.MAX_VALUE 的值。

声明

以下是声明java.lang.StrictMath.round()方法

public static int round(float a)

参数

a- 这是要四舍五入为整数的浮点值。

返回值

此方法返回四舍五入到最接近的 int 值的参数值。

异常

NA

示例

下面的例子展示了 java.lang.StrictMath.round() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      float f1 = 98.22f , f2 = 23.44f;
   
      // returns the closest int to the argument 
      int roundValue = StrictMath.round(f1); 
      System.out.println("closest int value to " + f1 + " = " + roundValue);

      roundValue = StrictMath.round(f2); 
      System.out.println("closest int value to " + f2 + " = " + roundValue);
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

closest int value to 98.22 = 98
closest int value to 23.44 = 23

相关用法


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