位置:首頁 > Java技術 > java.lang > java.lang.StrictMath.round(double a)方法實例

java.lang.StrictMath.round(double a)方法實例

java.lang.StrictMath.round(double a) 方法返回最接近參數的long值。其結果是通過添加1/2取其結果,並且將結果轉換長鍵入四舍五入為整數。它包括以下情況:

  • 如果參數為NaN,則結果為0。
  • 如果參數為負無窮大,或小於或等於Long.MIN_VALUE值,則結果等於Long.MIN_VALUE值。
  • 如果參數為正無窮大,或者大於或等於Long.MAX_VALUE值的任何值,則結果等於Long.MAX_VALUE值。

聲明

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

public static long round(double a)

參數

  • a -- 這是要舍入一個浮點到long值。

返回值

此方法返回四舍五入到最接近參數的long值。

異常

  • NA

例子

下麵的例子顯示java.lang.StrictMath.round()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 86.12 , d2 = 12.01;

    // returns the closest long to the argument 
    long roundValue = StrictMath.round(d1); 
    System.out.println("closest long value to " + d1 + " = " + roundValue);
        
    roundValue = StrictMath.round(d2); 
    System.out.println("closest long value to " + d2 + " = " + roundValue);
 }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

closest long value to 86.12 = 86
closest long value to 12.01 = 12