/**
* 把32位整数转换为16为整数。
*
* @param n 32位整数
* @return 16为整数
*/
public function toShort(n:int):int {
if(n > 0) {
return n & 0x80007FFF;
} else {
return -(-n & 0x80007FFF);
}
}
本文链接:https://assnippets.blogspot.com/2008/02/as33216.html转载请注明出处。
相关文章:
0评论:
发表评论