skip to main |skip to sidebar

2008年2月1日

[AS3]把32位整数转换为16为整数

/**
* 把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评论: