java.util.PriorityQueue.add() 方法

描述

add(E e) 方法用于将指定元素插入优先级队列。


声明

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

public boolean add(E e)

参数

e − 要添加的元素。


返回值

  • 方法调用返回 true(由 Collection.add(E) 指定)


异常

  • ClassCastException − 如果指定的元素无法根据优先级队列的顺序与当前在此优先级队列中的元素进行比较,则抛出。

  • NullPointerException − 如果指定元素为空,则抛出。


示例

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

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 = 0; i  <  10; i++ ) {
         prq.add (new Integer (i)) ; 
      }
      System.out.println("Priority queue values are: " + prq) ; 
   }
}

让我们编译并运行上面的程序,这将产生以下结果.

Priority queue values are: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]