28/05/2010
Questions pièges Java n°3
Question 3 :
Qu'affiche le programme suivant :
class AClass {
private static void egale(Integer i1,Integer i2){
if (i1 == i2)
System.out.println(i1 + " == " + i2);
}
public static void main(String[] args) {
egale(4,4);
egale(200,200);
}
}
18:58 Publié dans Programmation | Lien permanent | Commentaires (0) | Tags : java1.5, question piège
Les commentaires sont fermés.