标签: flex actionscript
我需要像Java中的Double.compare之类的东西。有办法实现吗?感谢。
答案 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; }