Javaでintとlongを比較しても大丈夫ですか...
long l = 800L int i = 4 if (i < l) { // i is less than l }
はい、大丈夫です。 intは暗黙的にlongに変換されます。これは、情報を失うことなく常に実行できます。
int
long