當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。