if
//invalide, cela ne fonctionnera pas if (condition) faireQuelqueChose(); //supporté, cela fonctionnera if (condition) { faireQuelqueChose(); }
else if
else
if (condition) { //… } else if (conditionDifferente) { //… } else { //… }
while (condition) { //… }
void Methode1() { if (condition) { //sortie de la méthode à cet endroit sans retourner de résultat return; } } String Methode2(String nomDeFichier) { // sortie de la méthode avec restitution d'un nom de fichier + extension return nomDeFichier + ".jpg"; }