8
Javaがif(5){…} if Cのような数値条件を厳密に許可しないのはなぜですか?
次の2つの小さなプログラムがあります。 C #include <stdio.h> int main() { if (5) { printf("true\n"); } else { printf("false\n"); } return 0; } Java class type_system { public static void main(String args[]) { if (5) { System.out.println("true"); } else { System.out.println("false"); } } } エラーメッセージを報告します。 type_system.java:4: error: incompatible types: int cannot be converted to …
33
java
c
type-systems