dimanche 8 novembre 2009

Exercice certification SCJP : String

Voici une question qui revient fréquemment sur String


Exercice :

public class test {

public static void main(String args) {
String s = "toto";
System.out.println("Size of s:" + s.length);
}
}


What is the result ? (choose one)

A Size of s:4
B Size of s:3
C Compilation fails
D An exception is thrown at runtime














Solution :
La réponse est C car il n'existe pas d'attribut length por String mais c'est la méthode length() qui existe.C'est une question piège, il est très facile de se faire avoir !

Aucun commentaire:

Enregistrer un commentaire