java.util.PriorityQueue.add()方法實例
add(E e) 方法是用來插入指定的元素插入一個優先級隊列。
聲明
以下是java.util.PriorityQueue.add()方法的聲明。
public boolean add(E e)
參數
-
e--要添加的元素。
返回值
-
該方法調用返回true(所指定的Collection.add(E))
異常
-
ClassCastException-- 拋出如果指定元素不能與當前元素的優先級隊列根據優先級隊列的排序規則進行比較。
-
NullPointerException-- 拋出如果指定的元素為null。
例子
下麵的例子顯示java.util.PriorityQueue.add()方法的使用
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 = 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]