程序优化例子

//判断是否为奇数
bool IsOddNumber(int data)
{
    return (data & 1)==1;

}

你可能感兴趣的:(优化)