Java运算符
逻辑运算符
与 &&,或 ||,非!
- 逻辑与运算:两个结果都为真,结果才为 true,如果前面代码判断为错,后面则不执行。
- 逻辑或运算:两个变量有一个为真,则结果才为 true。
- 逻辑非运算:如果为真,则为假,如果为假则为真。
public static void main(String[] args) {
// 与(and),或(or),非(取反) && || !
boolean a = true;
boolean b = false;
System.out.println("a && b" + (a && b)); // 逻辑与运算:两个结果都为真,结果才为 true
System.out.println("a || b" + (a || b)); // 逻辑或运算:两个变量有一个为真,则结果才为 true
System.out.println("a && b" + !(a && b)); // 如果为真,则为假,如果为假则为真
// 短路运算
int c = 5;
boolean x = (c < 4) && (c++ < 4); // 逻辑与运算前面代码判断为错,后面则不执行
System.out.println(x);
System.out.println(c);
}
三元运算符
x ? y : z
public static void main(String[] args) {
// x ? y : z
// 如果 x == true,则结果为 y,否则结果为 z
int score = 80;
String type = score < 60 ? "不及格" : "及格";
System.out.println(type);
}
标签:Java,System,运算符,&&,println,true,out
From: https://www.cnblogs.com/tnddb/p/16776282.html