java.lang.StrictMath.ceil()方法範例


java.lang.StrictMath.ceil() 方法返回最小的(最接近負無窮大)double值,該值大於或等於引數,並等於某個整數。這包括以下情況:

  • 如果引數值已經等於某個整數,那麼結果與引數一樣。
  • 如果引數為NaN或無窮大,正零或負零,那麼結果是與引數一樣。
  • 如果引數值是大於零,但大於-1.0,則結果為負零。

宣告

以下是java.lang.StrictMath.ceil()方法的宣告

public static double ceil(double a)

引數

  • a -- 這是double的值

返回值

此方法返回最小的(最接近負無窮大)浮點值,該值大於或等於引數,並等於某個整數。

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 5.3 , d2 = 7.8, d3 = 1.5;

    // returns the largest double value, greater than or equal to argument  
    double ceilValue = StrictMath.ceil(d1); 
    System.out.println("Ceil value of " + d1 + " = " + ceilValue);
        
    ceilValue = StrictMath.ceil(d2); 
    System.out.println("Ceil value of " + d2 + " = " + ceilValue);
    
    ceilValue = StrictMath.ceil(d3);
    System.out.println("Ceil value of " + d3 + " = " + ceilValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Ceil value of 5.3 = 6.0
Ceil value of 7.8 = 8.0
Ceil value of 1.5 = 2.0