在c中,unsigned char 等同于 byte,所以为了让每一位bit都赋值为1,这样定义就可以了typedef unsigned char byte;byte b = 255;这样b就是每一位都是1了