/**
* 把32位整数转换为8为整数。
*
* @param n 32位整数
* @return 8为整数
*/
public function toByte(n:int):int {
if(n > 0) {
return n & 0x8000007F;
} else {
return -(-n & 0x8000007F);
}
}
本文链接:https://assnippets.blogspot.com/2008/02/as3328.html转载请注明出处。
相关文章:
/**
* 把32位整数转换为8为整数。
*
* @param n 32位整数
* @return 8为整数
*/
public function toByte(n:int):int {
if(n > 0) {
return n & 0x8000007F;
} else {
return -(-n & 0x8000007F);
}
}
本文链接:https://assnippets.blogspot.com/2008/02/as3328.html转载请注明出处。
标签: Number
ActionScript Snippets 是一个收集 Advanced Flex Project 在开发时有用的代码、类的博客。
代码均遵循 Apache License 2.0。希望对大家有所帮助。
0评论:
发表评论