Java PriorityQueue toArray()方法

java.util.PriorityQueue.toArray(T[] a) 方法用来返回包括所有在此队列中的元素的数组。

1 语法

public <T> T[] toArray(T[] a)	

2 参数

a:其中的队列的元素被存储。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.PriorityQueue.toArray(T[] a)方法的例子
 */
import java.util.*;

public class Demo {
    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);

        // create arr1
        Integer[] arr1 = new Integer[5];

        // use toArrsy() method
        Integer[] arr2 = prq.toArray(arr1);

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

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

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

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

输出结果为:

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.PriorityQueue.toArray(T[] a)方法的例子
 */
import java.util.*;

public class Demo {
    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);

        // create arr1
        Integer[] arr1 = new Integer[5];

        // use toArrsy() method
        Integer[] arr2 = prq.toArray(arr1);

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

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

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

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

热门文章

优秀文章