#define setbit(x,y) x|=(1<<y) //将X的第Y位置1 #define clrbit(x,y) x&=!(1<<y) //将X的第Y位清0 转载于:https://www.cnblogs.com/zzdbullet/p/10224646.html