java.util.PriorityQueue.peek()方法實例
peek() 方法用於檢索該隊列的頭部。但它不會將其刪除。
聲明
以下是java.util.PriorityQueue.peek()方法的聲明。
public E peek()
參數
-
NA
返回值
-
在方法調用返回此隊列的頭部,或null,如果此隊列為空。
異常
-
NA
例子
下麵的例子顯示java.util.PriorityQueue.peek()方法的使用
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.peek(); System.out.println ( "Head of the queue is: "+ head); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Initial priority queue values are: [3, 4, 5, 6, 7, 8, 9] Head of the queue is: 3