Entiers, Pile: Print only the values in the stack.
[TP_POO.git] / Piles / Pile.java
index 1c808c21880b75fd231d62e891dde9aad5acfca9..e2cc0c470486d69833d790c5e157b867f128fed9 100644 (file)
@@ -95,7 +95,7 @@ public class Pile {
      * [afficher description]
      */
     public void afficher() {
-        for (int i = 0; i < getSize(); i++) {
+        for (int i = 0; i < getHeadIndex(); i++) {
             System.out.println("element " + i + " " + int_array[i]);
         }
     }