📌  相关文章
📜  Java中的 AbstractCollection retainAll() 方法及示例

📅  最后修改于: 2022-05-13 01:58:09.363000             🧑  作者: Mango

Java中的 AbstractCollection retainAll() 方法及示例

AbstractCollection 中的retainAll()方法有助于从另一个集合中保留指定集合的元素,并从结果中删除不匹配的元素。

句法:

public boolean retainAll(Collection collection)

参数:此方法接受一个参数集合,该集合是包含需要保留的元素的集合。

返回值:该方法返回一个布尔值。如果集合中的元素被成功保留,则返回“true”,否则返回“false”值。

异常:此方法引发以下异常:

  • UnsupportedOperationException:如果集合不支持 retainAll() 方法。
  • ClassCastException:如果主集合的任何元素的类型与指定的集合不兼容(即被保留)。这是可选的。
  • NullPointerException:如果主集合包含任何空元素并且指定的集合不允许任何空值,或者如果指定的集合具有空元素。这是可选的。

下面是一些例子来说明retainAll()方法的使用:

程序 1

// Java program to illustrate retainAll() method
  
import java.util.*;
  
public class AbstractCollectionDemo {
    public static void main(String[] args)
    {
        // Creating an arraylist
        AbstractCollection set1
            = new ArrayList();
  
        // adding values in set 1 list
        set1.add("one");
        set1.add("two");
        set1.add("three");
  
        // creating another arraylist
        AbstractCollection set2
            = new ArrayList();
  
        // adding values in set 2 list
        set2.add("three");
        set2.add("one");
        set2.add("five");
  
        // before invoking retainAll()
        System.out.println("Set 1 contains:\n"
                           + set1 + "\n");
        System.out.println("Set 2 contains:\n"
                           + set2 + "\n");
  
        // invoking retainAll()
        set2.retainAll(set1);
  
        // after invoking retainAll()
        System.out.println("Set 2 after"
                           + " invoking retainAll() method:\n"
                           + set2);
    }
}
输出:
Set 1 contains:
[one, two, three]

Set 2 contains:
[three, one, five]

Set 2 after invoking retainAll() method:
[three, one]

程序 2:显示 NullPointerException

// Java program to illustrate retainAll() method
  
import java.util.*;
  
public class NullPointerExample {
    public static void main(String[] args)
    {
  
        // Creating an arraylist
        // and assigning null to it
        AbstractCollection set1 = null;
  
        // creating another arraylist
        AbstractCollection set2
            = new ArrayList();
  
        // adding values in set 2 list
        set2.add("one");
        set2.add("two");
        set2.add("three");
  
        // before invoking retainAll()
        System.out.println("Set 1 contains:"
                           + set1 + "\n");
        System.out.println("Set 2 contains:"
                           + set2 + "\n");
  
        try {
            // invoking retainAll()
            set2.retainAll(set1);
  
            // after invoking retainAll()
            System.out.println("Set 2 after invoking "
                               + "retainAll() method:\n"
                               + set2);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
输出:
Set 1 contains:null

Set 2 contains:[one, two, three]

java.lang.NullPointerException