CodeGym /Cours Java /Syntaxe Java /Mesure des performances d'une liste

Mesure des performances d'une liste

Syntaxe Java
Niveau 8 , Leçon 6
Disponible

« Enfin ! Tu me manquais. Où tu étais ? Voici quelques missions pour toi. »

« Elles sont intéressantes ? »

« Bien sûr. Très intéressantes : »

Commentaires (1)
TO VIEW ALL COMMENTS OR TO MAKE A COMMENT,
GO TO FULL VERSION
An Ice T niveau 22, Abidjan, Cote D'ivoire
20 janvier 2023
Hello, I need explanation equality between integers in the last exercice. while the integer is less than 127, the equality works but beyond it's not. I have to cast integer into int. I believe the conversion is automatically done by the compiler.

if (i + 1 < list.size() && (int)list.get(i) == (int)list.get(i + 1)){
                j++;
            }
the code below doesn't work without the cast. why??? Thanks in advance.