位置:首页 > 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