标签: printing ampersand operand
& =检查两个陈述。 && =检查一条陈述。
我理解使用&符号作为操作数,但我不知道它是如何或为什么会在print语句中使用。
以Java为例:
System.out.println(10 & 7);
此输出2.为什么输出2?