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]

更新时间: 2019 年 7 月 30 日

463 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告