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);
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();
}