From 3b61f2e62189aaffd275c808d957edbbb3eaae9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 4 Mar 2018 23:08:13 +0100 Subject: [PATCH] TP2: Use a Compactable array for testing purpose. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- TP2/Main.java | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) 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(); } -- 2.34.1