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

本文转载自: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>


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值