public interface IntStack extends Stack<Integer>
Stack; provides some additional methods that use polymorphism to avoid (un)boxing.void push(int k)
Stack.push(Object)int popInt()
Stack.pop()int topInt()
Stack.top()int peekInt(int i)
Stack.peek(int)