C语言 |= &= 位运算

C语言    |=     &=    位运算

x=110
y=010
x|=y // x=x|y
x&= ~y //x=x&(~y)

  

原文地址:https://www.cnblogs.com/bytebee/p/8194668.html