代碼如下:
public class Test {
public static void main(String[] args) {
// 邏輯運算符執行的是短路求值,當左邊操作數可以推斷出表達式的值,就不再執行 了
int x, y = 10;
if (((x = 0) == 0) || ((y = 20) == 20)) {
System.out.println(y);// 輸出10
}
// 位操作運算不管值是如何,任何參與運算的表達式都會被執行求值
int a, b = 10;
if (((a = 0) == 0) | ((b = 20) == 20)) {
System.out.println(b);// 輸出20
}
}
}