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