From: Jérôme Benoit Date: Sun, 4 Mar 2018 22:08:13 +0000 (+0100) Subject: TP2: Use a Compactable array for testing purpose. X-Git-Url: https://git.piment-noir.org/?p=TP_POO.git;a=commitdiff_plain;h=3b61f2e62189aaffd275c808d957edbbb3eaae9f;ds=sidebyside TP2: Use a Compactable array for testing purpose. Signed-off-by: Jérôme Benoit --- diff --git a/TP2/Main.java b/TP2/Main.java index 05eb447..229b639 100644 --- a/TP2/Main.java +++ b/TP2/Main.java @@ -100,7 +100,7 @@ class Main { public static void main4() { - Structure[] structure = new Structure[10]; + Compactable[] compactable = new Compactable[10]; Point p1 = new Point(1, 2); Point p2 = new Point(2, 7); @@ -126,20 +126,19 @@ class Main { liste.inserer(5); liste.inserer(4); - for (int i = 0; i < 10; i++) { - structure[i] = entiers; - structure[i].afficher(); - structure[i].compacter(1); - structure[i].afficher(); - - structure[i] = liste; - structure[i].afficher(); - structure[i].compacter(1); - structure[i].afficher(); - } + compactable[0] = entiers; + entiers.afficher(); + compactable[0].compacter(1); + entiers.afficher(); + + compactable[1] = liste; + liste.afficher(); + compactable[1].compacter(1); + liste.afficher(); + compactable[2] = image; image.afficher(); - image.compacter(1); + compactable[2].compacter(1); image.afficher(); }