如何为以下对象创建接口?
void push ( int value ) //adds value to list appropriately for a stack
int pop ( ) //remove and return value from list
boolean isEmpty() //returns true if the stack is empty
int size() //returns number of items in stack
: