Java PriorityQueue size()方法

java.util.PriorityQueue.size() 方法返回此集合中的元素数。

1 语法

public int size()

2 参数

3 返回值

返回此集合中的元素数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.PriorityQueue.size()方法的例子
 */
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
        for ( int i = 3; i  <  10; i++ ) {
            prq.add (new Integer (i)) ;
        }

        System.out.println("Size of the queue is: "+ prq.size());
        System.out.println("Priority queue values are: "+ prq);
    }
}

输出结果为:

Size of the queue is: 7
Priority queue values are: [3, 4, 5, 6, 7, 8, 9]

热门文章

优秀文章