1.3.7为Stack添加一个方法peek(),返回栈中最近添加的元素(而不弹出它)。答: public Item peek() { Item item=first.item; return item; }