重学之路---位运算和(逻辑和短路)的与或
Posted pengestudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重学之路---位运算和(逻辑和短路)的与或相关的知识,希望对你有一定的参考价值。
int a = 12;
int b = a << 4;
System.out.println(b);
表示乘以2的4次方
>>除法
public class JavaDemo {
public static void main(String args[]) {
if (1 > 2 & 10 / 0 == 0) {
System.out.println("**************") ;
}
}
}
虽然1>2为false已经不成立,已经可以得出if中的值,但是必须全判断完
public class JavaDemo {
public static void main(String args[]) {
if (1 > 2 && 10 / 0 == 0) {
System.out.println("**************") ;
}
}
}
而双&第一个不成立,不继续判断
以上是关于重学之路---位运算和(逻辑和短路)的与或的主要内容,如果未能解决你的问题,请参考以下文章