Ejemplo n.º 1
0
 // Constructor.
 public StackIterator(ArrayStack <T> stack)
 {
     this.stack = stack;
     position   = -1;
 }