位置:首頁 > Java技術 > java.lang > java.lang.Math.floor()方法實例

java.lang.Math.floor()方法實例

java.lang.Math.floor(double a) 返回最大的(最接近正無窮大)double值,該值小於或等於參數,並等於某個整數。特殊情況:

  • 如果參數值已經等於某個整數,那麼結果與參數一樣。

  • 如果參數為NaN或無窮大,正零或負零,那麼結果是與參數一樣。

聲明

以下是java.lang.Math.floor()方法的聲明

public static double floor(double a)

參數

  • a -- 一個double值

返回值

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

異常

  • NA

例子

下麵的例子顯示lang.Math.floor()方法的使用。

package com.yiibai;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = -497.99;

      // call floor and print the result
      System.out.println("Math.floor(" + x + ")=" + Math.floor(x));
      System.out.println("Math.floor(" + y + ")=" + Math.floor(y));
      System.out.println("Math.floor(0)=" + Math.floor(0));


   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Math.floor(60984.1)=60984.0
Math.floor(-497.99)=-498.0
Math.floor(0)=0.0