X-Git-Url: https://git.piment-noir.org/?p=TP_POO.git;a=blobdiff_plain;f=Piles%2FPile.java;h=e2cc0c470486d69833d790c5e157b867f128fed9;hp=565432498d47f40d52ead6fe175e57bb81fcb85a;hb=306320428497edce10fbd9e0b36204c8764b7273;hpb=9b4b86b9cd28faed5698cf9a5949a89f0088c159 diff --git a/Piles/Pile.java b/Piles/Pile.java index 5654324..e2cc0c4 100644 --- a/Piles/Pile.java +++ b/Piles/Pile.java @@ -8,32 +8,32 @@ public class Pile { private int stack_head_index; /** - * [setSize description] - * @param int size [description] + * set the size of the internal array + * @param int size the size of the array */ private void setSize(int size) { array_size = size; } /** - * [getSize description] - * @return [description] + * get the size of the internal array + * @return the integer size of the internal array */ private int getSize() { return array_size; } /** - * [setHeadIndex description] - * @param int index [description] + * set the stack head index + * @param int index the stack head index */ private void setHeadIndex(int index) { stack_head_index = index; } /** - * [getHeadIndex description] - * @return [description] + * get the stack head current index + * @return the integer stack head index */ private int getHeadIndex() { return stack_head_index; @@ -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]); } }