Java 基础教程

Java 面向对象

Java 高级教程

Java 笔记

Java FAQ

original icon
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.knowledgedict.com/tutorial/java-number-floor.html

Java floor() 方法

Java Number & Math 类 Java Number & Math 类


floor() 方法可对一个数进行下舍入,返回给定参数最大的整数,该整数小于或等给定的参数。

语法

该方法有以下几种语法格式:


double floor(double d)

double floor(float f)

参数

  • double 或 float 的原生数据类型。

返回值

返回 double 类型数组,小于或等于给定的参数。

实例


public class Test{
    public static void main(String args[]){
        double d = 100.675;
        float f = -90;

        System.out.println(Math.floor(d));
        System.out.println(Math.floor(f));

        System.out.println(Math.ceil(d));
        System.out.println(Math.ceil(f));
    }
}

编译以上程序,输出结果为:

100.0
-90.0
101.0
-90.0
toString() 方法用于返回一个表示指定 char 值的 String 对象。结果是长度为 1 的字符串,仅由指定的 char 组成。 ...
random() 方法用于返回一个随机数,随机数范围为 0.0 =< Math.random < 1.0。 ...
max() 方法用于返回两个参数中的最大值。 ...
abs() 返回参数的绝对值。参数可以是 int, float, long, double, short, byte类型。 ...
round() 方法返回一个最接近的int、long型值。 ...