lowBit = value & 1; highBit = ((unsigned short) value) >> 15;
另请注意,LOBYTE和HIBYTE宏用于将SHORT分解为低位和高位字节,而不是测试字节中的各个位.