位置:首頁 > Java技術 > Java.util包 > java.util.PriorityQueue.poll()方法實例

java.util.PriorityQueue.poll()方法實例

poll() 方法用於檢索並移除此隊列的頭,則返回null,如果此隊列為空。

聲明

以下是java.util.PriorityQueue.poll()方法的聲明。

public E poll()							 

參數

  • NA

返回值

  • 該方法調用返回隊列的頭部,或null,如果隊列為空。

異常

  • NA

例子

下麵的例子顯示java.util.PriorityQueue.poll()方法的使用

package com.yiibai;

import java.util.*;

public class PriorityQueueDemo {
   public static void main(String args[]) {
      // create priority queue
      PriorityQueue < Integer >  prq = new PriorityQueue < Integer > (); 
       
      // insert values in the queue
      for ( int i = 3; i  <  10; i++ ){  
         prq.add (new Integer (i)) ; 
      }
      
      System.out.println ( "Initial priority queue values are: "+ prq);
      
      // get the head from the queue
      Integer head = prq.poll();
      
      System.out.println ( "Head of the queue is: "+ head);
      
      System.out.println ( "Priority queue values after poll: "+ prq);
   }
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Initial priority queue values are: [3, 4, 5, 6, 7, 8, 9]
Head of the queue is: 3
Priority queue values after poll: [4, 6, 5, 9, 7, 8]