队列 Java 中的 poll() 方法示例


使用 poll() 方法获取并移除队列中的第一个元素。

创建队列 −

Queue<String> q = new LinkedList<String>();

添加一些元素 −

q.add("abc");
q.add("def");
q.add("ghi");
q.add("jkl");
q.add("mno");
q.add("pqr");
q.add("stu");
q.add("vwx");

现在,移除第一个元素 −

q.poll()

以下示例演示 poll() 方法的实现 −

示例

 实时演示

import java.util.LinkedList;
import java.util.Queue;
public class Demo {
   public static void main(String[] args) {
      Queue<String> q = new LinkedList<String>();
      q.add("abc");
      q.add("def");
      q.add("ghi");
      q.add("jkl");
      q.add("mno");
      q.add("pqr");
      q.add("stu");
      q.add("vwx");
      System.out.println("Queue head = " + q.element());
      System.out.println("Removing element from queue = " + q.poll());
      System.out.println("Queue head now = " + q.element());
      System.out.println("Removing element from queue = " + q.poll());
      System.out.println("Queue head now = " + q.element());
      System.out.println("
Remaining Queue elements...");       Object ob;       while ((ob = q.poll()) != null) {          System.out.println(ob);       }    } }

输出

Queue head = abc
Removing element from queue = abc
Queue head now = def
Removing element from queue = def
Queue head now = ghi
Remaining Queue elements...
ghi
jkl
mno
pqr
stu
vwx

更新于: 25-6 月-2020

已观看 2K+ 次

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.