efrei/uml-poo/Test.java

15 lines
568 B
Java
Raw Normal View History

2021-09-20 13:46:56 +02:00
class Main {
public static void main(String[] ab) {
Etudiant e1 = new Etudiant("Dupond", true);
// e1.nom = "Efrei"; // ne compile pas car l'attribut est privé
e1.setNom("Efrei"); // possible car la méthode est pubique
Etudiant e2 = new Etudiant("Alain", false);
Etudiant e3 = new Etudiant();
System.out.println("Début programme ");
System.out.println("afficher : " + e1.getNom());
System.out.println("afficher : " + e2.getNom());
System.out.println("afficher : " + e3.getNom());
}
}