加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

flex的取整(取数)数学运算实例

发布时间:2020-12-15 01:19:54 所属栏目:百科 来源:网络整理
导读:本文转载自:http://hi.baidu.com/wosinmaiken/blog/item/ee59f7a8f72604bdca130c24.html ?xml version="1.0" encoding="utf-8"? mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()" ?? mx:Script ???? ![CDATA[ ????????

本文转载自:http://hi.baidu.com/wosinmaiken/blog/item/ee59f7a8f72604bdca130c24.html

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()">
?? <mx:Script>
???? <![CDATA[
???????? private function init():void{
???????? /**ceil?? 向前(数轴向右)取整(返回值为Number)**/
???????? trace(Math.ceil(10.4));??? //11
???????? trace(Math.ceil(10.5));??? //11
???????? trace(Math.ceil(-10.4));??? //-10
???????? trace(Math.ceil(-10.5));??? //-10
????????
???????? /**floor?? 向后(数轴向左)取整(返回值为Number)**/
??????????? trace(Math.floor(300.4));??? //300
??????????? trace(Math.floor(300.5));??? //300
??????????? trace(Math.floor(-300.4));??? //-301
??????????? trace(Math.floor(-300.5));??? //-301
???????????
??????????? /**round?? 整数四舍五入,负数五舍六入(返回值为Number)**/
??????????? trace(Math.round(8000.4));??? //8000
??????????? trace(Math.round(8000.5));??? //8001
??????????? trace(Math.round(-8000.4));??? //-8000
??????????? trace(Math.round(-8000.5));??? //-8000
??????????? trace(Math.round(-8000.6));??? //-8001
???????????
??????????? /**toFixed?? 正负数都四舍五入(返回值为String)**/
??????????? trace(new Number(4).toFixed(3));??? //4.000
??????????? trace(new Number(3.85742).toFixed(3));??? //3.857
??????????? trace(new Number(3.85752).toFixed(3));??? //3.858
??????????? trace(new Number(-3.85742).toFixed(3));??? //-3.857
??????????? trace(new Number(-3.85752).toFixed(3));??? //-3.858
???????? }
????????
???? ]]>
?? </mx:Script>

</mx:Application>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读