推(对象项)方法用于把项压入该堆栈的顶部。
import java.util.*; public class StackDemo { public static void main(String args[]) { Stack st = new Stack(); st.push("Java"); st.push("Source"); st.push("code"); System.out.println("Elements in the stack: "+st); } }
输出结果
Elements in the stack: [Java, Source, code]