Java - StrictMath ceil(double) 方法



描述

Java StrictMath ceil(double a) 方法返回大于或等于参数且等于数学整数的最小(最接近负无穷大)双精度值。特殊情况:

  • 如果参数值已经等于数学整数,则结果与参数相同。

  • 如果参数是 NaN、无穷大、正零或负零,则结果与参数相同。

  • 如果参数值小于零但大于 -1.0,则结果为负零。

请注意,StrictMath.ceil(x) 的值与 -StrictMath.floor(-x) 的值完全相同。

声明

以下是 java.lang.StrictMath.ceil() 方法的声明

public static double ceil(double a)

参数

a − 一个值。

返回值

此方法返回大于或等于参数且等于数学整数的最小(最接近负无穷大)浮点值。

异常

获取大于或等于正数的最小值示例

以下示例演示了 StrictMath ceil() 方法的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 10.7;

      // print the ceil of the number
      System.out.println("StrictMath.ceil(" + x + ")=" + StrictMath.ceil(x));
   }
}

输出

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

StrictMath.ceil(10.7)=11.0

获取大于或等于零的最小值示例

以下示例演示了 StrictMath ceil() 方法在零值上的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // print the ceil of the number
      System.out.println("StrictMath.ceil(" + x + ")=" + StrictMath.ceil(x));
   }
}

输出

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

StrictMath.ceil(0.0)=0.0

获取大于或等于负数的最小值示例

以下示例演示了 StrictMath ceil() 方法在负数上的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = -10.7;

      // print the ceil of the number
      System.out.println("StrictMath.ceil(" + x + ")=" + StrictMath.ceil(x));
   }
}

输出

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

StrictMath.ceil(-10.7)=-10.0
java_lang_strictmath.htm
广告