位置:首页 > Java技术 > java.lang > java.lang.Math.round(double a)方法实例

java.lang.Math.round(double a)方法实例

java.lang.Math.round(double a) 返回最接近参数的long值。其结果是通过添加1/2取其结果为地板除,并且将结果long四舍五入转换为整数。特殊情况:

  • 如果参数为NaN,则结果为0。

  • 如果参数为负无穷大,或小于或等于Long.MIN_VALUE值的任何值,则结果等于Long.MIN_VALUE值。

  • 如果参数为正无穷大,或者大于或等于Long.MAX_VALUE值的任何值,则结果等于Long.MAX_VALUE值。

声明

以下是java.lang.Math.round()方法的声明

public static long round(double a)

参数

  • a -- 浮点值舍入到long。

返回值

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

异常

  • NA

例子

下面的例子显示lang.Math.round()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 1654.9874;
      double y = -9765.134;

      // find the closest long for these doubles
      System.out.println("Math.round(" + x + ")=" + Math.round(x));
      System.out.println("Math.round(" + y + ")=" + Math.round(y));

   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

Math.round(1654.9874)=1655
Math.round(-9765.134)=-9765