當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StrictMath.ceil()用法及代碼示例



描述

這個java.lang.StrictMath.ceil() 方法返回大於或等於參數且等於數學整數的最小(最接近負無窮大)雙精度值。這包括這些情況

  • 如果參數值已經等於一個數學整數,則結果與參數相同。
  • 如果自變量是NaN或無窮大或正零或負零,則結果與自變量相同。
  • 如果參數值小於零但大於-1.0,則結果為負零。

聲明

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

public static double ceil(double a)

參數

a─ 這是雙重價值

返回值

此方法返回大於或等於參數且等於數學整數的最小(最接近負無窮大)浮點值。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.ceil() 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.ceil() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。