当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.PriorityQueue.peek()用法及代码示例



描述

这个peek()方法用于检索此队列的头部。但它不会删除它。

声明

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

public E peek()							 

参数

NA

返回值

  • 方法调用返回此队列的头部,如果此队列为空,则返回 null。

异常

NA

示例

下面的例子展示了 java.util.PriorityQueue.peek() 的用法

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

相关用法


注:本文由纯净天空筛选整理自 java.util.PriorityQueue.peek() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。