java.util.PriorityQueue.toArray()


描述

toArray()方法用来返回包括所有在此队列中的元素的数组。

声明

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

public Object[] toArray()

参数

NA

返回值

方法调用返回一个包含此队列中所有元素的数组。

异常

NA

实例

以下示例显示了java.util.PriorityQueue.toArray()的用法

package com.tutorialspoint;
import java.util.PriorityQueue;

public class PriorityQueueDemo {
   public static void main(String args[]) {

      // create priority queue
      PriorityQueue < Integer >  prq = new PriorityQueue < Integer > ();

      // insert values in the queue
      prq.add(6);  
      prq.add(9);
      prq.add(5);
      prq.add(64);
      prq.add(6);

      System.out.println("Priority queue values are: "+ prq);

      // get objects from the queue
      Object[] arr = prq.toArray();

      System.out.println("Value in array: ");

      for ( int i = 0; i<arr.length; i++ ) {  
         System.out.println("Value: " + arr[i].toString()) ;
      }
   }
}

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

Priority queue values are: [5, 6, 6, 64, 9]
Value in array:
Value: 5
Value: 6
Value: 6
Value: 64
Value: 9