1.ceil是最大返回最大参数的最小整数 2.floor()是返回最大值的最小整数; 可是我查了一下api,上面写的是这句话 Returns the largest (closest to positive infinity) double value that is less than or equal to the argument and is equal to a mathematical integer. Special cases: If the argument value is already equal to a mathematical integer, then the result is the same as the argument. 写的是返回最大的值是的整数
floor :地板 向下取整
ceil:天花板 向上取整
这样理解是不是好很多
搜索
复制
理解了floor与ceil两个单词的意思就比较好了解这两个方法了,floor即向下,ceil指天花板,即向上。12.81向下就是12.0,向上就是13.0
没有错啊