java.util.PriorityQueue.size()方法實例
size() 方法用於返回這個集合中元素的個數。
聲明
以下是java.util.PriorityQueue.size()方法的聲明。
public int size()
參數
-
NA
返回值
-
在方法調用返回的元素在此集合數
異常
-
NA
例子
下麵的例子顯示java.util.PriorityQueue.size()方法的使用
package com.yiibai; 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 ( "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]