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