比较ActionScript中的实数

时间:2013-12-19 12:13:19

标签: flex actionscript

我需要像Java中的Double.compare之类的东西。有办法实现吗?感谢。

1 个答案:

答案 0 :(得分:0)

public static function compareNumber( a:Number, b:Number ):int
{
    if ( a < b )
        return -1;
    else if ( a > b )
        return 1;
    else
        return 0;
}