operatop Demo06

发布时间 2023-10-14 20:07:25作者: 宁宁宁宁宁宁宁宁

package operator;

public class Demo06 {
public static void main(String[] args) {
/*
A = 0011 1100
B = 0000 1101
----------------------------
A&B = 0000 1100 和
A|B = 0011 1101 或
A^B = 0011 0001 非A即B
~B = 1111 0011 反

2*8 = 16 2*2*2*2 = 16
<< 左移
>> 右移

0000 0000 0
0000 0001 1
0000 0010 2
0000 0011 3
0000 0100 4
0000 1000 8
0001 0000 16

*/

System.out.println(2<<3);
}
}