// 逻辑运算符
public class Demo05 {
public static void main(String[] args) {
// 与(and) 或(or) 非(取反/不是你就是我)
boolean a = true;
boolean b = false;
System.out.println("a && b"+(a&&b)); //逻辑与运算:两个变量都为真,结果才为真
System.out.println("a || b:"+(a||b)); //逻辑或运算:两个变量有一个为真,则结果为真
System.out.println("!(a && b):"+!(a&&b)); ////逻辑非运算:如果是真,则变为假,如果是假,则变为真
//短路运算
int c = 5;
boolean d = (c<4&&(c++<4));
System.out.println(d); //false
System.out.println(c); // 5 应该c++=6 短路 不会执行后面的c++
int e = 5;
boolean f = (e>4&&(c++<4)); // 一个为真结果还是flase &&与要两个都为真 结果才为真
System.out.println(d); //false
System.out.println(c); // 6
}
}