&&是且的意思,a&&b 两者都为真才为真。
如果a为false,b不会计算。因为无论b为何值,操作结果都为false。称为"短路"计算。
运算结果只有下列四种情况。
True && True = True
True && False = False
False && True = False
False && False = False
||是或的意思,a||b 两者有一真即为真。
True || True = True
True || False = True
False || True = True
False || False = False
对于(&,|),运算的对象是位,也就是1/0
运算结果只有下列四种情况。
1 & 1 = 1
1 & 0 = 0
0 & 1 = 0
0 & 0 = 0
1 | 1 = 1
1 | 0 = 1
0 | 1 = 1
0 | 0 = 0
00000011 & 00000001=00000001
00000011 | 00000001=00000011