位置:首頁 > Java技術 > Java.util包 > java.util.PriorityQueue.remove()方法實例

java.util.PriorityQueue.remove()方法實例

remove(Object o) 方法用於從該隊列中移除指定元素的單個實例(如果存在)。

聲明

以下是java.util.PriorityQueue.remove()方法的聲明。

public boolean remove(Object o)

參數

  • o-- 要從這個隊列中移除的元素。

返回值

  • 該方法調用返回true,如果此隊列由於調用而更改的結果。

異常

  • NA

例子

下麵的例子顯示java.util.PriorityQueue.remove()方法的使用

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 ( "Initial priority queue values are: "+ prq);
      
      // remove 7 from the queue
      boolean isremoved = prq.remove(7);
      
      System.out.println ( "Return value after remove: "+ isremoved);
      
      System.out.println ( "Priority queue values after remove: "+ prq);
   }
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Initial priority queue values are: [3, 4, 5, 6, 7, 8, 9]
Return value after remove: true
Priority queue values after remove: [3, 4, 5, 6, 9, 8]