标签:结果 code color rgs 返回 rgba main || span
布尔逻辑运算符:返回一个boolean结果
有:! 非、& 与、| 或、^异或 、&&短路与、 || 短路或
短路与:左边为false,右边就不执行
短路或:左边为true,右边就不执行
public static void main(String[] args) { int i = 10; int j= 20; int m = 15; boolean bl1 = i < j; boolean bl2 = i > j; System.out.println(bl1&bl2); System.out.println(bl1|bl2); // 短路与:左边为false,右边就不执行 boolean bl3 = (++i > j) && (++m <j); System.out.println(bl3); System.out.println(i); System.out.println(m); // 短路或:左边为true,右边就不执行 boolean bl4 = (++m <j) || (++i > j) ; System.out.println(bl4); System.out.println(i); System.out.println(m); } }
标签:结果 code color rgs 返回 rgba main || span
原文地址:https://www.cnblogs.com/ccCtnLearn/p/14952185.html