短路运算符就是我们常用的“&&”、“||”,一般称为“条件操作”。
class Logic{
public ststic void main(String[] args){
int a=1;
int b=1;
if(a
System.out.println("Oh,That's Impossible!!!");
}else{
System.out.println("That's in my control.");
}
}
}
“&&”运算符检查第一个表达式是否返回“false”,如果是“false”则结果必为“false”,不再检查其他内容。
“a/0”是个明显的错误!但短路运算“&&”先判断“a
class Logic{
public ststic void main(String[] args){
int a=1;
int b=1;
if(a==b || b
System.out.println("That's in my control.");
}else{
System.out.println("Oh,That's Impossible!!!");
}
}
}
“||”运算符检查第一个表达式是否返回“true”,如果是“true”则结果必为“true”,不再检查其他内容。
“a/0”是个明显的错误!但短路运算“||”先执行“a==b”判断,返回“true”,遂造成短路,也就不进行“a/0”操作了,程序会打出"That's in my control."。这个时候,交换一下“||”左右两边的表达式,程序立即抛出异常“java.lang.ArithmeticException: / by zero”。
非短路运算符包括 “& 与”、“| 或”、“^ 异或”,一般称为“逻辑操作”
class Logic{
public ststic void main(String[] args){
int a=1;
int b=1;
if(a
System.out.println("Oh,That's Impossible!!!");
}else{
System.out.println("That's in my control.");
}
}
}
“&”运算符不会造成短路,它会认认真真的检查每一个表达式,虽然“a
class Logic{
public ststic void main(String[] args){
int a=1;
int b=1;
if(a==b | b