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


java.lang.StrictMath.floor() 方法返回最大的(最接近正無窮大)double值,該值小於或等於引數,並等於某個整數。它包括了一些情況:

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

宣告

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

public static double floor(double a)

引數

  • a -- 這是一個值

返回值

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

異常

  • NA

例子

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

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, less than or equal to argument  
    double floorValue = StrictMath.floor(d1); 
    System.out.println("Floor value of " + d1 + " = " + floorValue);
        
    floorValue = StrictMath.floor(d2); 
    System.out.println("Floor value of " + d2 + " = " + floorValue);
    
    floorValue = StrictMath.floor(d3);
    System.out.println("Floor value of " + d3 + " = " + floorValue);
  }
}

讓我們編譯並執行上述程式,這將產生以下結果:

Floor value of 5.3 = 5.0
Floor value of 7.8 = 7.0
Floor value of 1.5 = 1.0