public class Demon6 {
//位运算
public static void main(String[] args) {
/*
A = 0011 1100
B = 0000 1101
-------------
A&B = 0000 1100
A|B = 0011 1101
A^B = 0011 0001
~B = 1111 0010
面试题
2*8=16如何运算最快
<<左移 >>右移
<< *2 >> /2
位运算效率高
*/
System.out.println(2<<3);
}
}
网友评论