Quand j'essaie de compiler ceci :
public static Rand searchCount (int[] x)
{
int a ;
int b ;
...
for (int l= 0; l<x.length; l++)
{
if (x[l] == 0)
a++ ;
else if (x[l] == 1)
b++ ;
}
...
}
Je reçois ces erreurs :
Rand.java:72: variable a might not have been initialized
a++ ;
^
Rand.java:74: variable b might not have been initialized
b++ ;
^
2 errors
Il me semble que je les ai initialisés au début de la méthode. Qu'est-ce qui ne va pas ?