Java PriorityQueue removeAll() 方法



描述

java PriorityQueue removeAll(Collection<?> c) 方法移除数组队列对象和提供的集合元素中存在的全部公共元素。此方法会修改数组队列对象。

声明

以下是 java.util.PriorityQueue.removeAll(Collection<?> c) 方法的声明

public boolean removeAll​(Collection<?> c)

参数

c − 包含要从此集合中移除的元素的集合。

返回值

如果此数组队列因调用而发生更改,则返回 true。

异常

NullPointerException − 如果此数组队列包含一个或多个空元素,并且指定的集合不支持空元素,或者指定的集合为空。

移除 PriorityQueue 中所有给定整数元素的示例

以下示例演示了使用整数的 Java PriorityQueue removeAll() 方法的用法。我们创建了一个整数 PriorityQueue,添加了一些元素,打印它,然后使用 removeAll() 方法移除一些元素。由于 PriorityQueue 已被修改,因此会打印它以检查是否已移除指定的元素。

package com.tutorialspoint;

import java.util.PriorityQueue;
import java.util.Arrays;

public class PriorityQueueDemo {
   public static void main(String[] args) {
      
      // create an empty priority queue
      PriorityQueue<Integer> queue = new PriorityQueue<>();

      // use add() method to add elements in the queue
      queue.add(25);
      queue.add(30);
      queue.add(20);
      queue.add(18);        

      // let us print all the elements available in queue
      System.out.println("PriorityQueue = " + queue);

      // it will remove two common elements
      System.out.println("PriorityQueue modified:  " + queue.removeAll(Arrays.asList(11,30,20,12)));
	  
      // let us print all the elements available in queue again
      System.out.println("PriorityQueue = " + queue);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

PriorityQueue = [18, 20, 25, 30]
PriorityQueue modified:  true
PriorityQueue = [18, 25]

移除 PriorityQueue 中所有给定字符串元素的示例

以下示例演示了使用字符串的 Java PriorityQueue removeAll() 方法的用法。我们创建了一个字符串 PriorityQueue,添加了一些元素,打印它,然后使用 removeAll() 方法移除一些元素。由于 PriorityQueue 已被修改,因此会打印它以检查是否已移除指定的元素。

package com.tutorialspoint;

import java.util.PriorityQueue;
import java.util.Arrays;

public class PriorityQueueDemo {
   public static void main(String[] args) {
      
      // create an empty priority queue
      PriorityQueue<String> queue = new PriorityQueue<>();

      // use add() method to add elements in the queue
      queue.add("A");
      queue.add("B");
      queue.add("C");
      queue.add("D");        

      // let us print all the elements available in queue
      System.out.println("PriorityQueue = " + queue);

      // it will remove two common elements
      System.out.println("PriorityQueue modified:  " + queue.removeAll(Arrays.asList("E","B","C","F")));
	  
      // let us print all the elements available in queue again
      System.out.println("PriorityQueue = " + queue);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

PriorityQueue = [A, B, C, D]
PriorityQueue modified:  true
PriorityQueue = [A, D]

移除 PriorityQueue 中所有给定对象元素的示例

以下示例演示了使用 Student 对象的 Java PriorityQueue removeAll() 方法的用法。我们创建了一个 Student 对象 PriorityQueue,添加了一些元素,打印它,然后使用 removeAll() 方法移除一些学生。由于 PriorityQueue 已被修改,因此会打印它以检查是否已移除指定的元素。

package com.tutorialspoint;

import java.util.PriorityQueue;
import java.util.Arrays;

public class PriorityQueueDemo {
   public static void main(String[] args) {
      
      // create an empty priority queue
      PriorityQueue<Student> queue = new PriorityQueue<>();

      // use add() method to add elements in the queue
      queue.add(new Student(1, "Julie"));
      queue.add(new Student(2, "Robert"));
      queue.add(new Student(3, "Adam"));       

      // let us print all the elements available in queue
      System.out.println("PriorityQueue = " + queue);

      // it will return true after removing two students from queue
      System.out.println("Student removed : " + queue.removeAll(
         Arrays.asList(new Student(2, "Robert"),new Student(3, "Adam"))));
	  
      // let us print all the elements available in queue again
      System.out.println("PriorityQueue = " + queue);
   }
}
class Student implements Comparable<Student> {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   
   @Override
   public boolean equals(Object obj) {
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }

   @Override
   public int compareTo(Student student) {
      return this.rollNo - student.rollNo;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

PriorityQueue = [[ 1, Julie ], [ 2, Robert ], [ 3, Adam ]]
Student removed :true
PriorityQueue = [[ 1, Julie ]]
java_util_priorityqueue.htm
广告