java.lang.StrictMath.round(float a)方法範例


java.lang.StrictMath.round(float a) 方法返回最接近引數的整數。其結果是通過新增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.yiibai;

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