Java StrictMath floor()方法与示例

StrictMath类floor()方法

  • floor()方法在java.lang包中可用。

  • 在此方法中,如果给定的正参数的小数点后的值是0或大于0,则在这种情况下,它将返回小数点前的相同数字,否则,如果给定的负参数的小数点后的值大于0因此它返回小数点前的(相同数字+1)。

  • floor()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会出现任何错误。

  • floor()方法不会引发任何异常。

语法:

    public static double floor(double d);

参数:

  • double d –表示要找到其底值的double类型值。

返回值:

此方法的返回类型为double –返回给定参数的最大浮点值,并且参数值可以小于或等于给定参数。

注意:

  • 如果我们将NaN作为参数传递,则方法将返回相同的值(NaN)。

  • 如果传递无穷大(正或负),则方法将返回相同的值(即正无穷或负无穷)。

  • 如果我们传递零正或负,则方法将返回相同的值。

示例

//Java程序演示的例子
//StrictMath类的floor(double d)方法。

public class Floor {
    public static void main(String[] args) {
        //变量声明
        double d1 = 7.0 / 0.0;
        double d2 = -7.0 / 0.0;
        double d3 = 0.0;
        double d4 = -0.0;
        double d5 = -123.1;
        double d6 = 123.456;

        //显示d1,d2,d3,d4,d5和d6的先前值 
        System.out.println("d1: " + d1);
        System.out.println("d2: " + d2);
        System.out.println("d3: " + d3);
        System.out.println("d4: " + d4);
        System.out.println("d5: " + d5);
        System.out.println("d6: " + d6);

        //在这里,我们将得到(Infinity),因为我们
        //传递参数,其值为(infinity)
        System.out.println("StrictMath.floor(d1): " + StrictMath.floor(d1));

        //在这里,我们将得到(-Infinity),因为我们正在传递 
        //值是(-infinity)
        System.out.println("StrictMath.floor(d2): " + StrictMath.floor(d2));

        //在这里,我们得到(0.0),因为我们 
        //传递参数,其值为(0.0)
        System.out.println("StrictMath.floor(d3): " + StrictMath.floor(d3));

        //在这里,我们得到(-0.0),因为我们通过 
        //参数值为(-0.0)
        System.out.println("StrictMath.floor(d4): " + StrictMath.floor(d4));

        //在这里,我们将得到(-124.0),因为我们 
        //传递参数,其值为(-123.1)
        System.out.println("StrictMath.floor(d5): " + StrictMath.floor(d5));

        //在这里,我们将得到(123.0),因为我们 
        //传递参数,其值为(123.456)
        System.out.println("StrictMath.floor(d6): " + StrictMath.floor(d6));
    }
}

输出结果

d1: Infinity
d2: -Infinity
d3: 0.0
d4: -0.0
d5: -123.1
d6: 123.456
StrictMath.floor(d1): Infinity
StrictMath.floor(d2): -Infinity
StrictMath.floor(d3): 0.0
StrictMath.floor(d4): -0.0
StrictMath.floor(d5): -124.0
StrictMath.floor(d6): 123.0