package com.zhang.www.base.operater;
public class Dome10 {
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);
System.out.println(c);
}
}
原文:https://www.cnblogs.com/dzcnb/p/14651307.html