static bool CheckPowerOfTwo(ulong num)
{
    return num > 0 && (num & (num - 1)) == 0;
}

 

相关文章: