Java 中 pop() 方法有什么作用?
pop() 方法用于移除此栈顶部的对象,并返回该对象作为此函数的值。
示例
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("Removed object is: "+st.pop()); System.out.println("Elements after remove: "+st); } }
输出
Removed object is: code Elements after remove: [Java, Source]
广告