• Javascript Math ceil()、floor()、round()三个函数的区别


     
    下面来介绍将小数值舍入为整数的几个方法:Math.ceil()、Math.floor()和Math.round()。 这三个方法分别遵循下列舍入规则:
    ◎Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数;
    ◎Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数;
    ◎Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数(这也是我们在数学课上学到的舍入规则)。
    下面是使用这些方法的示例:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    alert(Math.ceil(25.9)); //26
    alert(Math.ceil(25.5)); //26
    alert(Math.ceil(25.1)); //26
    alert(Math.round(25.9)); //26
    alert(Math.round(25.5)); //26
    alert(Math.round(25.1)); //25
    alert(Math.floor(25.9)); //25
    alert(Math.floor(25.5)); //25
    alert(Math.floor(25.1)); //25
    南昌网络公司技术人员总结:对于所有介于25和26(不包括26)之间的数值,Math.ceil()始终返回26,因为它执行的是向上舍入。Math.round()方法只在数值大于等于25.5时返回26;否则返回25。最后,Math.floor()对所有介于25和26(不包括26)之间的数值都返回25。
    以下是一些补充:
     
    ceil():将小数部分一律向整数部分进位。
    如:
    Math.ceil(12.2)//返回13
    Math.ceil(12.7)//返回13
     
    floor():一律舍去,仅保留整数。
    如:
    Math.floor(12.2)// 返回12
    Math.floor(12.7)//返回12
    Math.floor(12.0)//返回12
     
    round():进行四舍五入
    如:
    Math.round(12.2)// 返回12
    Math.round(12.7)//返回13
    Math.round(12.0)//返回12
  • 相关阅读:
    工作总结(二):Web Design
    工作总结(一):Linux C
    三十分钟学会AWK
    MySQL并发复制系列二:多线程复制 2016
    修改MySQL 5.7.9版本的root密码方法以及一些新变化整理
    sync_binlog innodb_flush_log_at_trx_commit 浅析
    MariaDB的"response time"插件
    Python学习九:列表生成式
    python中的深拷贝和浅拷贝理解
    Mycat 配置
  • 原文地址:https://www.cnblogs.com/dandeliongogo/p/6610929.html
Copyright © 2020-2023  润新知