Java StrictMath round()方法

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

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

1 语法

public static int round(float a)

2 参数

a : 这是要舍入为整数的浮点值。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath round()方法
 */
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

 

热门文章

优秀文章