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