此方法在java.lang包中可用。
在此方法中,如果给定的正参数的小数点后的值是0或大于0,那么在这种情况下,它在小数点前返回相同的数字,否则,如果给定的负参数的值后小数点后大于0,则它在小数点前返回(相同的数字+1)。
这是一个静态方法,因此也可以使用类名访问此方法。
此方法的返回类型为double,这意味着它将返回给定参数的最大浮点值,并且参数值可能小于或等于给定参数。
在此方法中,我们仅将一个参数作为参数传递给Math类的方法。
此方法不会引发任何异常。
语法:
public static double floor(double d){ }
参数:
double d –一个最大浮点值的double值。
注意:
如果我们传递“ NaN”,则返回“ NaN”。
如果我们传递一个正无穷大,它将返回相同的值,即一个正无穷大。
如果我们传递一个负无穷大,它将返回相同的值,即一个负无穷大。
如果我们传递0(-0或0),则返回相同值。
返回值:
此方法的返回类型为double,它返回给定值的最大浮点值。
//Java程序演示floor(double d)的示例 //数学课的方法 public class FloorMethod { 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(" Before implementing floor() so the value of d1 is :" + d1); System.out.println(" Before implementing floor() so the value of d2 is :" + d2); System.out.println(" Before implementing floor() so the value of d3 is :" + d3); System.out.println(" Before implementing floor() so the value of d4 is :" + d4); System.out.println(" Before implementing floor() so the value of d4 is :" + d5); System.out.println(" Before implementing floor() so the value of d4 is :" + d6); //在这里,我们将获得(Infinity),因为我们正在传递参数 //其值是(无穷大) System.out.println("After implementing floor() so the value of d1 is :" + Math.floor(d1)); //在这里,我们将获得(-Infinity),因为我们正在传递参数 //其值为(-infinity) System.out.println("After implementing floor() so the value of d2 is :" + Math.floor(d2)); //在这里,我们将得到(0.0),因为我们正在传递参数 //其值为(0.0) System.out.println("After implementing floor() so the value of d3 is :" + Math.floor(d3)); //在这里,我们将得到(-0.0),因为我们正在传递参数 //其值为(-0.0) System.out.println("After implementing floor() so the value of d4 is :" + Math.floor(d4)); //在这里,我们将得到(-124.0),因为我们正在传递参数 //其值为(-123.1) System.out.println("After implementing floor() so the value of d5 is :" + Math.floor(d5)); //在这里,我们将得到(123.0),因为我们正在传递参数 //其值为(123.456) System.out.println("After implementing floor() so the value of d6 is :" + Math.floor(d6)); } }
输出结果
E:\Programs>javac FloorMethod.java E:\Programs>java FloorMethod Before implementing floor() so the value of d1 is :Infinity Before implementing floor() so the value of d2 is :-Infinity Before implementing floor() so the value of d3 is :0.0 Before implementing floor() so the value of d4 is :-0.0 Before implementing floor() so the value of d4 is :-123.1 Before implementing floor() so the value of d4 is :123.456 After implementing floor() so the value of d1 is :Infinity After implementing floor() so the value of d2 is :-Infinity After implementing floor() so the value of d3 is :0.0 After implementing floor() so the value of d4 is :-0.0 After implementing floor() so the value of d5 is :-124.0 After implementing floor() so the value of d6 is :123.0