判断一个数是不是二的次方
1
2
3
4
int scale = ;
if ((scale != 0) && ((scale & (scale - 1)) == 0)) {
return true;
}