标签:png 判断 技术 out bubuko ati amp == lse
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("**************") ;
}
}
}
而双&第一个不成立,不继续判断
标签:png 判断 技术 out bubuko ati amp == lse
原文地址:https://www.cnblogs.com/PengeStudy/p/10263634.html