We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e754d88 commit e23aaf5Copy full SHA for e23aaf5
operators/Bool.java
@@ -26,6 +26,7 @@ public static void main(String[] args) {
26
+ ((i < 10) && (j < 10)) );
27
System.out.println("(i < 10) || (j < 10) is "
28
+ ((i < 10) || (j < 10)) );
29
+ //如果在应该使用字符串的地方使用了布尔值,布尔值会自动转换成合适的文本格式
30
}
31
32
/* Output:
0 commit comments