java.util.PriorityQueue.peek() 方法



说明

**peek()** 方法用于检索此队列的队首。但不会删除。

声明

以下是 java.util.PriorityQueue.peek() 方法的声明。

public E peek()							 

E peek()

参数

不适用

  • 返回值

方法调用将返回此队列的队首,如果此队列为空,则返回 null。

参数

异常

示例

package com.tutorialspoint;

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
让我们编译并运行以上程序,将产生以下结果。
打印页面
广告