Use a Main class for the main().
[Project_POO.git] / exo1 / Pile.java
index 74998e44a976cc02048fab22ae29cf49998bb993..d69668a952f3cb4434972c200dfe9b257c0d128f 100644 (file)
@@ -36,7 +36,7 @@ public class Pile<E> {
      * get the stack head current index
      * @return the integer stack head index
      */
-    private int getHeadIndex() {
+    public int getHeadIndex() {
         return stack_head_index;
     }
 
@@ -113,61 +113,4 @@ public class Pile<E> {
         }
     }
 
-    /**
-     * The main() function
-     * @param String[] args main() function arguments array
-     */
-    public static void main(String[] args) {
-        Pile<Integer> stack = new Pile<Integer>(5);
-
-        stack.empiler(3);
-        stack.empiler(5);
-        stack.empiler(4);
-        stack.empiler(7);
-        stack.empiler(8);
-
-        stack.afficher();
-
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-        System.out.println("Stack head value " + stack.depiler());
-        System.out.println("Stack index " + stack.getHeadIndex());
-
-        stack.afficher();
-
-        Pile<String> stackStr = new Pile<String>(5);
-
-        stackStr.empiler("Bonjour");
-        stackStr.empiler("Salut");
-        stackStr.empiler("Hello");
-        stackStr.empiler("Hi");
-        stackStr.empiler("Hugh");
-
-        stackStr.afficher();
-
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-        System.out.println("Stack head value " + stackStr.depiler());
-        System.out.println("Stack index " + stackStr.getHeadIndex());
-
-        stackStr.afficher();
-    }
 }